[installation] Change to nightly

This commit is contained in:
2025-10-30 12:04:59 +01:00
parent 2ff097f9d1
commit a31bc45cce
1441 changed files with 60368 additions and 56360 deletions

View File

@ -2724,11 +2724,11 @@
<longitude>32.5370865</longitude>
<population>488125</population>
</City>
<City category="C">
<City countryID="TN" category="C">
<name>Tunis</name>
<latitude>36.8001077</latitude>
<longitude>10.1847938</longitude>
<population>20000</population>
<population>1056247</population>
</City>
<City>
<name>Lubumbashi</name>

View File

@ -0,0 +1,205 @@
SELECT 'Drop foreign key contraints of all model tables' AS '';
ALTER TABLE EventDescription DROP FOREIGN KEY IF EXISTS EventDescription_ibfk_1;
ALTER TABLE Comment DROP FOREIGN KEY IF EXISTS Comment_ibfk_1;
ALTER TABLE DataUsed DROP FOREIGN KEY IF EXISTS DataUsed_ibfk_1;
ALTER TABLE CompositeTime DROP FOREIGN KEY IF EXISTS CompositeTime_ibfk_1;
ALTER TABLE PickReference DROP FOREIGN KEY IF EXISTS PickReference_ibfk_1;
ALTER TABLE AmplitudeReference DROP FOREIGN KEY IF EXISTS AmplitudeReference_ibfk_1;
ALTER TABLE Reading DROP FOREIGN KEY IF EXISTS Reading_ibfk_1;
ALTER TABLE MomentTensorComponentContribution DROP FOREIGN KEY IF EXISTS MomentTensorComponentContribution_ibfk_1;
ALTER TABLE MomentTensorStationContribution DROP FOREIGN KEY IF EXISTS MomentTensorStationContribution_ibfk_1;
ALTER TABLE MomentTensorPhaseSetting DROP FOREIGN KEY IF EXISTS MomentTensorPhaseSetting_ibfk_1;
ALTER TABLE MomentTensor DROP FOREIGN KEY IF EXISTS MomentTensor_ibfk_1;
ALTER TABLE FocalMechanism DROP FOREIGN KEY IF EXISTS FocalMechanism_ibfk_1;
ALTER TABLE Amplitude DROP FOREIGN KEY IF EXISTS Amplitude_ibfk_1;
ALTER TABLE StationMagnitudeContribution DROP FOREIGN KEY IF EXISTS StationMagnitudeContribution_ibfk_1;
ALTER TABLE Magnitude DROP FOREIGN KEY IF EXISTS Magnitude_ibfk_1;
ALTER TABLE StationMagnitude DROP FOREIGN KEY IF EXISTS StationMagnitude_ibfk_1;
ALTER TABLE Pick DROP FOREIGN KEY IF EXISTS Pick_ibfk_1;
ALTER TABLE OriginReference DROP FOREIGN KEY IF EXISTS OriginReference_ibfk_1;
ALTER TABLE FocalMechanismReference DROP FOREIGN KEY IF EXISTS FocalMechanismReference_ibfk_1;
ALTER TABLE Event DROP FOREIGN KEY IF EXISTS Event_ibfk_1;
ALTER TABLE Arrival DROP FOREIGN KEY IF EXISTS Arrival_ibfk_1;
ALTER TABLE Origin DROP FOREIGN KEY IF EXISTS Origin_ibfk_1;
ALTER TABLE Parameter DROP FOREIGN KEY IF EXISTS Parameter_ibfk_1;
ALTER TABLE ParameterSet DROP FOREIGN KEY IF EXISTS ParameterSet_ibfk_1;
ALTER TABLE Setup DROP FOREIGN KEY IF EXISTS Setup_ibfk_1;
ALTER TABLE ConfigStation DROP FOREIGN KEY IF EXISTS ConfigStation_ibfk_1;
ALTER TABLE ConfigModule DROP FOREIGN KEY IF EXISTS ConfigModule_ibfk_1;
ALTER TABLE QCLog DROP FOREIGN KEY IF EXISTS QCLog_ibfk_1;
ALTER TABLE WaveformQuality DROP FOREIGN KEY IF EXISTS WaveformQuality_ibfk_1;
ALTER TABLE Outage DROP FOREIGN KEY IF EXISTS Outage_ibfk_1;
ALTER TABLE StationReference DROP FOREIGN KEY IF EXISTS StationReference_ibfk_1;
ALTER TABLE StationGroup DROP FOREIGN KEY IF EXISTS StationGroup_ibfk_1;
ALTER TABLE AuxSource DROP FOREIGN KEY IF EXISTS AuxSource_ibfk_1;
ALTER TABLE AuxDevice DROP FOREIGN KEY IF EXISTS AuxDevice_ibfk_1;
ALTER TABLE SensorCalibration DROP FOREIGN KEY IF EXISTS SensorCalibration_ibfk_1;
ALTER TABLE Sensor DROP FOREIGN KEY IF EXISTS Sensor_ibfk_1;
ALTER TABLE ResponsePAZ DROP FOREIGN KEY IF EXISTS ResponsePAZ_ibfk_1;
ALTER TABLE ResponsePolynomial DROP FOREIGN KEY IF EXISTS ResponsePolynomial_ibfk_1;
ALTER TABLE ResponseFAP DROP FOREIGN KEY IF EXISTS ResponseFAP_ibfk_1;
ALTER TABLE ResponseFIR DROP FOREIGN KEY IF EXISTS ResponseFIR_ibfk_1;
ALTER TABLE ResponseIIR DROP FOREIGN KEY IF EXISTS ResponseIIR_ibfk_1;
ALTER TABLE DataloggerCalibration DROP FOREIGN KEY IF EXISTS DataloggerCalibration_ibfk_1;
ALTER TABLE Decimation DROP FOREIGN KEY IF EXISTS Decimation_ibfk_1;
ALTER TABLE Datalogger DROP FOREIGN KEY IF EXISTS Datalogger_ibfk_1;
ALTER TABLE AuxStream DROP FOREIGN KEY IF EXISTS AuxStream_ibfk_1;
ALTER TABLE Stream DROP FOREIGN KEY IF EXISTS Stream_ibfk_1;
ALTER TABLE SensorLocation DROP FOREIGN KEY IF EXISTS SensorLocation_ibfk_1;
ALTER TABLE Station DROP FOREIGN KEY IF EXISTS Station_ibfk_1;
ALTER TABLE Network DROP FOREIGN KEY IF EXISTS Network_ibfk_1;
ALTER TABLE RouteArclink DROP FOREIGN KEY IF EXISTS RouteArclink_ibfk_1;
ALTER TABLE RouteSeedlink DROP FOREIGN KEY IF EXISTS RouteSeedlink_ibfk_1;
ALTER TABLE Route DROP FOREIGN KEY IF EXISTS Route_ibfk_1;
ALTER TABLE Access DROP FOREIGN KEY IF EXISTS Access_ibfk_1;
ALTER TABLE JournalEntry DROP FOREIGN KEY IF EXISTS JournalEntry_ibfk_1;
ALTER TABLE ArclinkUser DROP FOREIGN KEY IF EXISTS ArclinkUser_ibfk_1;
ALTER TABLE ArclinkStatusLine DROP FOREIGN KEY IF EXISTS ArclinkStatusLine_ibfk_1;
ALTER TABLE ArclinkRequestLine DROP FOREIGN KEY IF EXISTS ArclinkRequestLine_ibfk_1;
ALTER TABLE ArclinkRequest DROP FOREIGN KEY IF EXISTS ArclinkRequest_ibfk_1;
ALTER TABLE DataSegment DROP FOREIGN KEY IF EXISTS DataSegment_ibfk_1;
ALTER TABLE DataAttributeExtent DROP FOREIGN KEY IF EXISTS DataAttributeExtent_ibfk_1;
ALTER TABLE DataExtent DROP FOREIGN KEY IF EXISTS DataExtent_ibfk_1;
ALTER TABLE PublicObject DROP FOREIGN KEY IF EXISTS PublicObject_ibfk_1;
SELECT 'Create Catalog table' AS '';
CREATE TABLE Catalog (
_oid BIGINT(20) NOT NULL,
_parent_oid BIGINT(20) NOT NULL,
_last_modified TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
name VARCHAR(255) NOT NULL,
description LONGTEXT,
creationInfo_agencyID VARCHAR(64),
creationInfo_agencyURI VARCHAR(255),
creationInfo_author VARCHAR(128),
creationInfo_authorURI VARCHAR(255),
creationInfo_creationTime DATETIME,
creationInfo_creationTime_ms INTEGER,
creationInfo_modificationTime DATETIME,
creationInfo_modificationTime_ms INTEGER,
creationInfo_version VARCHAR(64),
creationInfo_used TINYINT(1) NOT NULL DEFAULT '0',
start DATETIME NOT NULL,
start_ms INTEGER NOT NULL,
end DATETIME,
end_ms INTEGER,
dynamic TINYINT(1) NOT NULL,
PRIMARY KEY(_oid),
INDEX(_parent_oid)
) ENGINE=INNODB;
SELECT 'Converting QCLog.message to LONGTEXT' AS '';
ALTER TABLE QCLog MODIFY message LONGTEXT NOT NULL;
SELECT 'Drop composite_index from QCLog' AS '';
ALTER TABLE QCLog DROP CONSTRAINT composite_index;
SELECT 'Create index on QCLog.start' AS '';
CREATE INDEX QCLog_start ON QCLog(start,start_ms);
SELECT 'Create index on QCLog.end' AS '';
CREATE INDEX QCLog_end ON QCLog(end,end_ms);
SELECT 'Adding index to QCLog' AS '';
CREATE INDEX QCLog_id ON QCLog(waveformID_networkCode,waveformID_stationCode,waveformID_locationCode,waveformID_channelCode,waveformID_resourceURI);
SELECT 'Convert BLOBS to LONGTEXT' AS '';
ALTER TABLE CompositeTime MODIFY second_pdf_variable_content LONGTEXT;
ALTER TABLE CompositeTime MODIFY second_pdf_probability_content LONGTEXT;
ALTER TABLE MomentTensorComponentContribution MODIFY dataTimeWindow LONGTEXT;
ALTER TABLE MomentTensor MODIFY scalarMoment_pdf_variable_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY scalarMoment_pdf_probability_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mrr_pdf_variable_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mrr_pdf_probability_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mtt_pdf_variable_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mtt_pdf_probability_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mpp_pdf_variable_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mpp_pdf_probability_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mrt_pdf_variable_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mrt_pdf_probability_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mrp_pdf_variable_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mrp_pdf_probability_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mtp_pdf_variable_content LONGTEXT;
ALTER TABLE MomentTensor MODIFY tensor_Mtp_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane1_strike_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane1_strike_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane1_dip_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane1_dip_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane1_rake_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane1_rake_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane2_strike_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane2_strike_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane2_dip_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane2_dip_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane2_rake_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY nodalPlanes_nodalPlane2_rake_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_tAxis_azimuth_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_tAxis_azimuth_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_tAxis_plunge_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_tAxis_plunge_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_tAxis_length_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_tAxis_length_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_pAxis_azimuth_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_pAxis_azimuth_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_pAxis_plunge_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_pAxis_plunge_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_pAxis_length_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_pAxis_length_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_nAxis_azimuth_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_nAxis_azimuth_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_nAxis_plunge_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_nAxis_plunge_pdf_probability_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_nAxis_length_pdf_variable_content LONGTEXT;
ALTER TABLE FocalMechanism MODIFY principalAxes_nAxis_length_pdf_probability_content LONGTEXT;
ALTER TABLE Amplitude MODIFY amplitude_pdf_variable_content LONGTEXT;
ALTER TABLE Amplitude MODIFY amplitude_pdf_probability_content LONGTEXT;
ALTER TABLE Amplitude MODIFY period_pdf_variable_content LONGTEXT;
ALTER TABLE Amplitude MODIFY period_pdf_probability_content LONGTEXT;
ALTER TABLE Amplitude MODIFY scalingTime_pdf_variable_content LONGTEXT;
ALTER TABLE Amplitude MODIFY scalingTime_pdf_probability_content LONGTEXT;
ALTER TABLE Magnitude MODIFY magnitude_pdf_variable_content LONGTEXT;
ALTER TABLE Magnitude MODIFY magnitude_pdf_probability_content LONGTEXT;
ALTER TABLE StationMagnitude MODIFY magnitude_pdf_variable_content LONGTEXT;
ALTER TABLE StationMagnitude MODIFY magnitude_pdf_probability_content LONGTEXT;
ALTER TABLE Pick MODIFY time_pdf_variable_content LONGTEXT;
ALTER TABLE Pick MODIFY time_pdf_probability_content LONGTEXT;
ALTER TABLE Pick MODIFY horizontalSlowness_pdf_variable_content LONGTEXT;
ALTER TABLE Pick MODIFY horizontalSlowness_pdf_probability_content LONGTEXT;
ALTER TABLE Pick MODIFY backazimuth_pdf_variable_content LONGTEXT;
ALTER TABLE Pick MODIFY backazimuth_pdf_probability_content LONGTEXT;
ALTER TABLE Origin MODIFY time_pdf_variable_content LONGTEXT;
ALTER TABLE Origin MODIFY time_pdf_probability_content LONGTEXT;
ALTER TABLE Origin MODIFY latitude_pdf_variable_content LONGTEXT;
ALTER TABLE Origin MODIFY latitude_pdf_probability_content LONGTEXT;
ALTER TABLE Origin MODIFY longitude_pdf_variable_content LONGTEXT;
ALTER TABLE Origin MODIFY longitude_pdf_probability_content LONGTEXT;
ALTER TABLE Origin MODIFY depth_pdf_variable_content LONGTEXT;
ALTER TABLE Origin MODIFY depth_pdf_probability_content LONGTEXT;
ALTER TABLE Parameter MODIFY value LONGTEXT;
ALTER TABLE AuxSource MODIFY remark_content LONGTEXT;
ALTER TABLE AuxDevice MODIFY remark_content LONGTEXT;
ALTER TABLE SensorCalibration MODIFY remark_content LONGTEXT;
ALTER TABLE Sensor MODIFY remark_content LONGTEXT;
ALTER TABLE ResponsePAZ MODIFY zeros_content LONGTEXT;
ALTER TABLE ResponsePAZ MODIFY poles_content LONGTEXT;
ALTER TABLE ResponsePAZ MODIFY remark_content LONGTEXT;
ALTER TABLE ResponsePolynomial MODIFY coefficients_content LONGTEXT;
ALTER TABLE ResponsePolynomial MODIFY remark_content LONGTEXT;
ALTER TABLE ResponseFAP MODIFY tuples_content LONGTEXT;
ALTER TABLE ResponseFAP MODIFY remark_content LONGTEXT;
ALTER TABLE ResponseFIR MODIFY coefficients_content LONGTEXT;
ALTER TABLE ResponseFIR MODIFY remark_content LONGTEXT;
ALTER TABLE ResponseIIR MODIFY numerators_content LONGTEXT;
ALTER TABLE ResponseIIR MODIFY denominators_content LONGTEXT;
ALTER TABLE ResponseIIR MODIFY remark_content LONGTEXT;
ALTER TABLE DataloggerCalibration MODIFY remark_content LONGTEXT;
ALTER TABLE Decimation MODIFY analogueFilterChain_content LONGTEXT;
ALTER TABLE Decimation MODIFY digitalFilterChain_content LONGTEXT;
ALTER TABLE Datalogger MODIFY remark_content LONGTEXT;
ALTER TABLE AuxStream MODIFY code CHAR(8) NOT NULL;
ALTER TABLE Stream MODIFY code CHAR(8) NOT NULL;
ALTER TABLE Station MODIFY remark_content LONGTEXT;
ALTER TABLE Network MODIFY remark_content LONGTEXT;
SELECT 'Updating Meta' AS '';
UPDATE Meta SET value='0.14.0' WHERE name='Schema-Version';

View File

@ -0,0 +1,209 @@
\echo Drop foreign key contraints of all model tables
ALTER TABLE EventDescription DROP CONSTRAINT IF EXISTS IF EXISTS EventDescription__oid_fkey;
ALTER TABLE Comment DROP CONSTRAINT IF EXISTS Comment__oid_fkey;
ALTER TABLE DataUsed DROP CONSTRAINT IF EXISTS DataUsed__oid_fkey;
ALTER TABLE CompositeTime DROP CONSTRAINT IF EXISTS CompositeTime__oid_fkey;
ALTER TABLE PickReference DROP CONSTRAINT IF EXISTS PickReference__oid_fkey;
ALTER TABLE AmplitudeReference DROP CONSTRAINT IF EXISTS AmplitudeReference__oid_fkey;
ALTER TABLE Reading DROP CONSTRAINT IF EXISTS Reading__oid_fkey;
ALTER TABLE MomentTensorComponentContribution DROP CONSTRAINT IF EXISTS MomentTensorComponentContribution__oid_fkey;
ALTER TABLE MomentTensorStationContribution DROP CONSTRAINT IF EXISTS MomentTensorStationContribution__oid_fkey;
ALTER TABLE MomentTensorPhaseSetting DROP CONSTRAINT IF EXISTS MomentTensorPhaseSetting__oid_fkey;
ALTER TABLE MomentTensor DROP CONSTRAINT IF EXISTS MomentTensor__oid_fkey;
ALTER TABLE FocalMechanism DROP CONSTRAINT IF EXISTS FocalMechanism__oid_fkey;
ALTER TABLE Amplitude DROP CONSTRAINT IF EXISTS Amplitude__oid_fkey;
ALTER TABLE StationMagnitudeContribution DROP CONSTRAINT IF EXISTS StationMagnitudeContribution__oid_fkey;
ALTER TABLE Magnitude DROP CONSTRAINT IF EXISTS Magnitude__oid_fkey;
ALTER TABLE StationMagnitude DROP CONSTRAINT IF EXISTS StationMagnitude__oid_fkey;
ALTER TABLE Pick DROP CONSTRAINT IF EXISTS Pick__oid_fkey;
ALTER TABLE OriginReference DROP CONSTRAINT IF EXISTS OriginReference__oid_fkey;
ALTER TABLE FocalMechanismReference DROP CONSTRAINT IF EXISTS FocalMechanismReference__oid_fkey;
ALTER TABLE Event DROP CONSTRAINT IF EXISTS Event__oid_fkey;
ALTER TABLE Arrival DROP CONSTRAINT IF EXISTS Arrival__oid_fkey;
ALTER TABLE Origin DROP CONSTRAINT IF EXISTS Origin__oid_fkey;
ALTER TABLE Parameter DROP CONSTRAINT IF EXISTS Parameter__oid_fkey;
ALTER TABLE ParameterSet DROP CONSTRAINT IF EXISTS ParameterSet__oid_fkey;
ALTER TABLE Setup DROP CONSTRAINT IF EXISTS Setup__oid_fkey;
ALTER TABLE ConfigStation DROP CONSTRAINT IF EXISTS ConfigStation__oid_fkey;
ALTER TABLE ConfigModule DROP CONSTRAINT IF EXISTS ConfigModule__oid_fkey;
ALTER TABLE QCLog DROP CONSTRAINT IF EXISTS QCLog__oid_fkey;
ALTER TABLE WaveformQuality DROP CONSTRAINT IF EXISTS WaveformQuality__oid_fkey;
ALTER TABLE Outage DROP CONSTRAINT IF EXISTS Outage__oid_fkey;
ALTER TABLE StationReference DROP CONSTRAINT IF EXISTS StationReference__oid_fkey;
ALTER TABLE StationGroup DROP CONSTRAINT IF EXISTS StationGroup__oid_fkey;
ALTER TABLE AuxSource DROP CONSTRAINT IF EXISTS AuxSource__oid_fkey;
ALTER TABLE AuxDevice DROP CONSTRAINT IF EXISTS AuxDevice__oid_fkey;
ALTER TABLE SensorCalibration DROP CONSTRAINT IF EXISTS SensorCalibration__oid_fkey;
ALTER TABLE Sensor DROP CONSTRAINT IF EXISTS Sensor__oid_fkey;
ALTER TABLE ResponsePAZ DROP CONSTRAINT IF EXISTS ResponsePAZ__oid_fkey;
ALTER TABLE ResponsePolynomial DROP CONSTRAINT IF EXISTS ResponsePolynomial__oid_fkey;
ALTER TABLE ResponseFAP DROP CONSTRAINT IF EXISTS ResponseFAP__oid_fkey;
ALTER TABLE ResponseFIR DROP CONSTRAINT IF EXISTS ResponseFIR__oid_fkey;
ALTER TABLE ResponseIIR DROP CONSTRAINT IF EXISTS ResponseIIR__oid_fkey;
ALTER TABLE DataloggerCalibration DROP CONSTRAINT IF EXISTS DataloggerCalibration__oid_fkey;
ALTER TABLE Decimation DROP CONSTRAINT IF EXISTS Decimation__oid_fkey;
ALTER TABLE Datalogger DROP CONSTRAINT IF EXISTS Datalogger__oid_fkey;
ALTER TABLE AuxStream DROP CONSTRAINT IF EXISTS AuxStream__oid_fkey;
ALTER TABLE Stream DROP CONSTRAINT IF EXISTS Stream__oid_fkey;
ALTER TABLE SensorLocation DROP CONSTRAINT IF EXISTS SensorLocation__oid_fkey;
ALTER TABLE Station DROP CONSTRAINT IF EXISTS Station__oid_fkey;
ALTER TABLE Network DROP CONSTRAINT IF EXISTS Network__oid_fkey;
ALTER TABLE RouteArclink DROP CONSTRAINT IF EXISTS RouteArclink__oid_fkey;
ALTER TABLE RouteSeedlink DROP CONSTRAINT IF EXISTS RouteSeedlink__oid_fkey;
ALTER TABLE Route DROP CONSTRAINT IF EXISTS Route__oid_fkey;
ALTER TABLE Access DROP CONSTRAINT IF EXISTS Access__oid_fkey;
ALTER TABLE JournalEntry DROP CONSTRAINT IF EXISTS JournalEntry__oid_fkey;
ALTER TABLE ArclinkUser DROP CONSTRAINT IF EXISTS ArclinkUser__oid_fkey;
ALTER TABLE ArclinkStatusLine DROP CONSTRAINT IF EXISTS ArclinkStatusLine__oid_fkey;
ALTER TABLE ArclinkRequestLine DROP CONSTRAINT IF EXISTS ArclinkRequestLine__oid_fkey;
ALTER TABLE ArclinkRequest DROP CONSTRAINT IF EXISTS ArclinkRequest__oid_fkey;
ALTER TABLE DataSegment DROP CONSTRAINT IF EXISTS DataSegment__oid_fkey;
ALTER TABLE DataAttributeExtent DROP CONSTRAINT IF EXISTS DataAttributeExtent__oid_fkey;
ALTER TABLE DataExtent DROP CONSTRAINT IF EXISTS DataExtent__oid_fkey;
ALTER TABLE PublicObject DROP CONSTRAINT IF EXISTS PublicObject__oid_fkey;
\echo Create catalog table
CREATE TABLE Catalog (
_oid BIGINT NOT NULL,
_parent_oid BIGINT NOT NULL,
_last_modified TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
m_name VARCHAR(255) NOT NULL,
m_description TEXT,
m_creationInfo_agencyID VARCHAR(64),
m_creationInfo_agencyURI VARCHAR(255),
m_creationInfo_author VARCHAR(128),
m_creationInfo_authorURI VARCHAR(255),
m_creationInfo_creationTime TIMESTAMP,
m_creationInfo_creationTime_ms INTEGER,
m_creationInfo_modificationTime TIMESTAMP,
m_creationInfo_modificationTime_ms INTEGER,
m_creationInfo_version VARCHAR(64),
m_creationInfo_used BOOLEAN NOT NULL DEFAULT '0',
m_start TIMESTAMP NOT NULL,
m_start_ms INTEGER NOT NULL,
m_end TIMESTAMP,
m_end_ms INTEGER,
m_dynamic BOOLEAN NOT NULL,
PRIMARY KEY(_oid)
);
CREATE INDEX Catalog__parent_oid ON Catalog(_parent_oid);
CREATE TRIGGER Catalog_update BEFORE UPDATE ON Catalog FOR EACH ROW EXECUTE PROCEDURE update_modified();
\echo Drop QCLog composite index
ALTER TABLE QCLog DROP CONSTRAINT qclog_composite_index;
\echo Convert QCLog.message to TEXT
ALTER TABLE QCLog ALTER COLUMN m_message TYPE TEXT;
\echo Create index on QCLog.start
CREATE INDEX qclog_id ON QCLog(m_waveformID_networkCode,m_waveformID_stationCode,m_waveformID_locationCode,m_waveformID_channelCode,m_waveformID_resourceURI);
\echo Create index on QCLog.end
CREATE INDEX qclog_m_start_m_start_ms ON QCLog(m_start,m_start_ms);
\echo Adding index to QCLog
CREATE INDEX qclog_m_end_m_end_ms ON QCLog(m_end,m_end_ms);
\echo Change AuxStream and Stream code length to 8
ALTER TABLE AuxStream ALTER COLUMN m_code TYPE VARCHAR(8);
ALTER TABLE Stream ALTER COLUMN m_code TYPE VARCHAR(8);
\echo Convert BYTEA to TEXT
ALTER TABLE CompositeTime ALTER COLUMN m_second_pdf_variable_content TYPE TEXT;
ALTER TABLE CompositeTime ALTER COLUMN m_second_pdf_probability_content TYPE TEXT;
ALTER TABLE MomentTensorComponentContribution ALTER COLUMN m_dataTimeWindow TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_scalarMoment_pdf_variable_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_scalarMoment_pdf_probability_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mrr_pdf_variable_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mrr_pdf_probability_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mtt_pdf_variable_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mtt_pdf_probability_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mpp_pdf_variable_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mpp_pdf_probability_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mrt_pdf_variable_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mrt_pdf_probability_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mrp_pdf_variable_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mrp_pdf_probability_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mtp_pdf_variable_content TYPE TEXT;
ALTER TABLE MomentTensor ALTER COLUMN m_tensor_Mtp_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane1_strike_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane1_strike_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane1_dip_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane1_dip_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane1_rake_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane1_rake_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane2_strike_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane2_strike_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane2_dip_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane2_dip_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane2_rake_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_nodalPlanes_nodalPlane2_rake_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_tAxis_azimuth_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_tAxis_azimuth_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_tAxis_plunge_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_tAxis_plunge_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_tAxis_length_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_tAxis_length_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_pAxis_azimuth_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_pAxis_azimuth_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_pAxis_plunge_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_pAxis_plunge_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_pAxis_length_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_pAxis_length_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_nAxis_azimuth_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_nAxis_azimuth_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_nAxis_plunge_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_nAxis_plunge_pdf_probability_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_nAxis_length_pdf_variable_content TYPE TEXT;
ALTER TABLE FocalMechanism ALTER COLUMN m_principalAxes_nAxis_length_pdf_probability_content TYPE TEXT;
ALTER TABLE Amplitude ALTER COLUMN m_amplitude_pdf_variable_content TYPE TEXT;
ALTER TABLE Amplitude ALTER COLUMN m_amplitude_pdf_probability_content TYPE TEXT;
ALTER TABLE Amplitude ALTER COLUMN m_period_pdf_variable_content TYPE TEXT;
ALTER TABLE Amplitude ALTER COLUMN m_period_pdf_probability_content TYPE TEXT;
ALTER TABLE Amplitude ALTER COLUMN m_scalingTime_pdf_variable_content TYPE TEXT;
ALTER TABLE Amplitude ALTER COLUMN m_scalingTime_pdf_probability_content TYPE TEXT;
ALTER TABLE Magnitude ALTER COLUMN m_magnitude_pdf_variable_content TYPE TEXT;
ALTER TABLE Magnitude ALTER COLUMN m_magnitude_pdf_probability_content TYPE TEXT;
ALTER TABLE StationMagnitude ALTER COLUMN m_magnitude_pdf_variable_content TYPE TEXT;
ALTER TABLE StationMagnitude ALTER COLUMN m_magnitude_pdf_probability_content TYPE TEXT;
ALTER TABLE Pick ALTER COLUMN m_time_pdf_variable_content TYPE TEXT;
ALTER TABLE Pick ALTER COLUMN m_time_pdf_probability_content TYPE TEXT;
ALTER TABLE Pick ALTER COLUMN m_horizontalSlowness_pdf_variable_content TYPE TEXT;
ALTER TABLE Pick ALTER COLUMN m_horizontalSlowness_pdf_probability_content TYPE TEXT;
ALTER TABLE Pick ALTER COLUMN m_backazimuth_pdf_variable_content TYPE TEXT;
ALTER TABLE Pick ALTER COLUMN m_backazimuth_pdf_probability_content TYPE TEXT;
ALTER TABLE Origin ALTER COLUMN m_time_pdf_variable_content TYPE TEXT;
ALTER TABLE Origin ALTER COLUMN m_time_pdf_probability_content TYPE TEXT;
ALTER TABLE Origin ALTER COLUMN m_latitude_pdf_variable_content TYPE TEXT;
ALTER TABLE Origin ALTER COLUMN m_latitude_pdf_probability_content TYPE TEXT;
ALTER TABLE Origin ALTER COLUMN m_longitude_pdf_variable_content TYPE TEXT;
ALTER TABLE Origin ALTER COLUMN m_longitude_pdf_probability_content TYPE TEXT;
ALTER TABLE Origin ALTER COLUMN m_depth_pdf_variable_content TYPE TEXT;
ALTER TABLE Origin ALTER COLUMN m_depth_pdf_probability_content TYPE TEXT;
ALTER TABLE Parameter ALTER COLUMN m_value TYPE TEXT;
ALTER TABLE AuxSource ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE AuxDevice ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE SensorCalibration ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE Sensor ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE ResponsePAZ ALTER COLUMN m_zeros_content TYPE TEXT;
ALTER TABLE ResponsePAZ ALTER COLUMN m_poles_content TYPE TEXT;
ALTER TABLE ResponsePAZ ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE ResponsePolynomial ALTER COLUMN m_coefficients_content TYPE TEXT;
ALTER TABLE ResponsePolynomial ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE ResponseFAP ALTER COLUMN m_tuples_content TYPE TEXT;
ALTER TABLE ResponseFAP ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE ResponseFIR ALTER COLUMN m_coefficients_content TYPE TEXT;
ALTER TABLE ResponseFIR ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE ResponseIIR ALTER COLUMN m_numerators_content TYPE TEXT;
ALTER TABLE ResponseIIR ALTER COLUMN m_denominators_content TYPE TEXT;
ALTER TABLE ResponseIIR ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE DataloggerCalibration ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE Decimation ALTER COLUMN m_analogueFilterChain_content TYPE TEXT;
ALTER TABLE Decimation ALTER COLUMN m_digitalFilterChain_content TYPE TEXT;
ALTER TABLE Datalogger ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE Station ALTER COLUMN m_remark_content TYPE TEXT;
ALTER TABLE Network ALTER COLUMN m_remark_content TYPE TEXT;
\echo Updating Meta
UPDATE Meta SET value='0.14.0' WHERE name='Schema-Version';

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1 +0,0 @@
apt install libxml2 libboost-filesystem1.67.0 libboost-iostreams1.67.0 libboost-thread1.67.0 libboost-program-options1.67.0 libboost-regex1.67.0 libboost-signals1.67.0 libboost-system1.67.0 libssl1.1 libncurses5 libmariadb3 libpq5 libpython3.7 python3-numpy

View File

@ -1 +0,0 @@
apt install python3-twisted python3-dateutil

View File

@ -1 +0,0 @@
apt install libqt5gui5 libqt5xml5 libqt5opengl5 libqt5sql5-sqlite libqt5svg5 libqt5printsupport5

View File

@ -1 +0,0 @@
apt install mariadb-server mariadb-client

View File

@ -1 +0,0 @@
apt install postgresql postgresql-client

View File

@ -1 +1 @@
apt install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl1.1 libncurses5 libmariadb3 libpq5 libpython3.9 python3-numpy
apt install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl1.1 libncurses5 libmariadb3 libpq5 libpython3.9 python3-numpy libboost-container1.74.0 libbson-1.0-0

View File

@ -1 +1 @@
apt install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl3 libncurses5 libmariadb3 libpq5 libpython3.11 python3-numpy
apt install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl3 libncurses5 libmariadb3 libpq5 libpython3.11 python3-numpy libboost-container1.74.0 libbson-1.0-0

View File

@ -0,0 +1 @@
dnf install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-system openssl ncurses mariadb postgresql python3-numpy epel-release boost-container libbson

View File

@ -0,0 +1,10 @@
dnf install python3-dateutil python3-pip
echo "user name for pip install (sysop):"
read user
if [ -z "$user" ]; then user=sysop; fi
# install Python packages using pip
echo "installing packages for user " $user
su - $user -c 'python3 -m pip install --user twisted'

View File

@ -0,0 +1 @@
dnf install qt6-qtbase qt6-qtbase-gui qt6-qtsvg

View File

@ -0,0 +1,50 @@
#!/bin/bash
# The name of the following file may change. Find the correct one in source:
# https://github.com/IstvanBondar/iLoc
# The download source corresponds to the iloc documentation
URL="https://github.com/IstvanBondar/iLoc/raw/main/iLocAuxDir4.2.tgz"
error() {
echo $1
exit 1
}
echo "Installing iLoc dependencies"
echo -n "User name for owning the SeisComP installation (sysop): "
read user
if [ -z "$user" ]; then
user=sysop
fi
seiscompTemp=/home/${user}/seiscomp
echo -n "SeisComP installation directory (${seiscompTemp}): "
read seiscomp
if [ -z "$seiscomp" ]; then
seiscomp=${seiscompTemp}
fi
if [ ! -d "${seiscomp}" ]; then
error "Directory "${seiscomp}" does not exists"
fi
iloc="$seiscomp/share/iloc"
mkdir -p "${iloc}" || error "Could not create target path ${iloc}"
tarFile="$(mktemp)"
echo "Downloading ${URL} to ${tarFile}"
wget -O "${tarFile}" "${URL}" || error "Failed to download ${URL} to ${tarFile}"
echo "Extracting tarball to '${iloc}'"
tar xzf "${tarFile}" -C "${iloc}" || error "Failed to extract ${tarFile}"
echo "Changing ownership of ${iloc} to $user - you may wish to set group ownership"
chown -R $user "${iloc}"
exit 0

View File

@ -0,0 +1 @@
dnf install mariadb mariadb-server

View File

@ -0,0 +1 @@
dnf install postgresql postgresql-server

View File

@ -1 +1 @@
yum install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-signals boost-system openssl ncurses mariadb postgresql python3-numpy mysql-libs
yum install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-signals boost-system openssl ncurses mariadb postgresql python3-numpy mysql-libs epel-release boost-container libbson

View File

@ -1 +1 @@
dnf install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-system openssl ncurses mariadb postgresql python3-numpy
dnf install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-system openssl ncurses mariadb postgresql python3-numpy epel-release boost-container libbson

View File

@ -1 +0,0 @@
apt-get install libxml2 libboost-filesystem1.71.0 libboost-iostreams1.71.0 libboost-thread1.71.0 libboost-program-options1.71.0 libboost-regex1.71.0 libboost-system1.71.0 libssl1.1 libncurses5 libmysqlclient21 libmariadb3 libpq5 libpython3.8 python3-numpy

View File

@ -1 +0,0 @@
apt-get install python3-twisted python3-dateutil

View File

@ -1 +0,0 @@
apt install libqt5gui5 libqt5xml5 libqt5opengl5 libqt5sql5-sqlite libqt5svg5 libqt5printsupport5

View File

@ -1 +0,0 @@
apt-get install mariadb-server mariadb-client

View File

@ -1 +0,0 @@
apt-get install mysql-server mysql-client

View File

@ -1 +0,0 @@
apt-get install postgresql postgresql-client

View File

@ -1 +1 @@
apt-get install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl3 libncurses6 libmysqlclient21 libmariadb3 libpq5 libpython3.10 python3-numpy
apt-get install libxml2 libboost-filesystem1.74.0 libboost-iostreams1.74.0 libboost-thread1.74.0 libboost-program-options1.74.0 libboost-regex1.74.0 libboost-system1.74.0 libssl3 libncurses6 libmysqlclient21 libmariadb3 libpq5 libpython3.10 python3-numpy libboost-container1.74.0 libbson-1.0-0

View File

@ -1 +1 @@
apt-get install libxml2 libboost-filesystem1.83.0 libboost-iostreams1.83.0 libboost-thread1.83.0 libboost-program-options1.83.0 libboost-regex1.83.0 libboost-system1.83.0 libssl3 libncurses6 libmysqlclient21 libmariadb3 libpq5 libpython3.12 python3-numpy
apt-get install libxml2 libbson-1.0-0t64 libboost-filesystem1.83.0 libboost-iostreams1.83.0 libboost-thread1.83.0 libboost-program-options1.83.0 libboost-regex1.83.0 libboost-system1.83.0 libssl3 libncurses6 libmysqlclient21 libmariadb3 libpq5 libpython3.12 python3-numpy libboost-container1.83.0

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

@ -2,11 +2,11 @@
<!-- This file was generated by dvisvgm 2.8.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='328.17859pt' height='65.333346pt' viewBox='69.036493 78.704857 328.17859 65.333346'>
<defs>
<path id='g2-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g0-18' d='M8.368618 28.08269C8.368618 28.034869 8.344707 28.010959 8.320797 27.975093C7.878456 27.532752 7.07746 26.731756 6.276463 25.440598C4.351681 22.356164 3.478954 18.470735 3.478954 13.867995C3.478954 10.652055 3.90934 6.503611 5.881943 2.940971C6.826401 1.243337 7.806725 .263014 8.332752-.263014C8.368618-.298879 8.368618-.32279 8.368618-.358655C8.368618-.478207 8.284932-.478207 8.117559-.478207S7.926276-.478207 7.746949-.298879C3.741968 3.347447 2.486675 8.822914 2.486675 13.85604C2.486675 18.554421 3.56264 23.288667 6.599253 26.863263C6.838356 27.138232 7.292653 27.628394 7.782814 28.05878C7.926276 28.202242 7.950187 28.202242 8.117559 28.202242S8.368618 28.202242 8.368618 28.08269Z'/>
<path id='g0-19' d='M6.300374 13.867995C6.300374 9.169614 5.224408 4.435367 2.187796 .860772C1.948692 .585803 1.494396 .095641 1.004234-.334745C.860772-.478207 .836862-.478207 .669489-.478207C.526027-.478207 .418431-.478207 .418431-.358655C.418431-.310834 .466252-.263014 .490162-.239103C.908593 .191283 1.709589 .992279 2.510585 2.283437C4.435367 5.36787 5.308095 9.2533 5.308095 13.85604C5.308095 17.07198 4.877709 21.220423 2.905106 24.783064C1.960648 26.480697 .968369 27.472976 .466252 27.975093C.442341 28.010959 .418431 28.046824 .418431 28.08269C.418431 28.202242 .526027 28.202242 .669489 28.202242C.836862 28.202242 .860772 28.202242 1.0401 28.022914C5.045081 24.376588 6.300374 18.901121 6.300374 13.867995Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g1-58' d='M2.199751-.573848C2.199751-.920548 1.912827-1.159651 1.625903-1.159651C1.279203-1.159651 1.0401-.872727 1.0401-.585803C1.0401-.239103 1.327024 0 1.613948 0C1.960648 0 2.199751-.286924 2.199751-.573848Z'/>
<path id='g1-68' d='M1.876961-.884682C1.769365-.466252 1.745455-.3467 .908593-.3467C.681445-.3467 .561893-.3467 .561893-.131507C.561893 0 .633624 0 .872727 0H4.662516C7.07746 0 9.432628-2.49863 9.432628-5.164633C9.432628-6.886177 8.404483-8.16538 6.694894-8.16538H2.857285C2.630137-8.16538 2.52254-8.16538 2.52254-7.938232C2.52254-7.81868 2.630137-7.81868 2.809465-7.81868C3.53873-7.81868 3.53873-7.723039 3.53873-7.591532C3.53873-7.567621 3.53873-7.49589 3.490909-7.316563L1.876961-.884682ZM4.399502-7.352428C4.507098-7.79477 4.554919-7.81868 5.021171-7.81868H6.336239C7.460025-7.81868 8.488169-7.208966 8.488169-5.559153C8.488169-4.961395 8.249066-2.881196 7.089415-1.566127C6.75467-1.171606 5.846077-.3467 4.471233-.3467H3.108344C2.940971-.3467 2.917061-.3467 2.84533-.358655C2.713823-.37061 2.701868-.394521 2.701868-.490162C2.701868-.573848 2.725778-.645579 2.749689-.753176L4.399502-7.352428Z'/>
<path id='g1-70' d='M3.550685-3.897385H4.698381C5.606974-3.897385 5.678705-3.694147 5.678705-3.347447C5.678705-3.19203 5.654795-3.024658 5.595019-2.761644C5.571108-2.713823 5.559153-2.654047 5.559153-2.630137C5.559153-2.546451 5.606974-2.49863 5.69066-2.49863C5.786301-2.49863 5.798257-2.546451 5.846077-2.737733L6.539477-5.523288C6.539477-5.571108 6.503611-5.642839 6.419925-5.642839C6.312329-5.642839 6.300374-5.595019 6.252553-5.391781C6.001494-4.495143 5.762391-4.244085 4.722291-4.244085H3.634371L4.411457-7.340473C4.519054-7.758904 4.542964-7.79477 5.033126-7.79477H6.635118C8.129514-7.79477 8.344707-7.352428 8.344707-6.503611C8.344707-6.43188 8.344707-6.168867 8.308842-5.858032C8.296887-5.810212 8.272976-5.654795 8.272976-5.606974C8.272976-5.511333 8.332752-5.475467 8.404483-5.475467C8.488169-5.475467 8.53599-5.523288 8.5599-5.738481L8.810959-7.830635C8.810959-7.866501 8.834869-7.986052 8.834869-8.009963C8.834869-8.141469 8.727273-8.141469 8.51208-8.141469H2.84533C2.618182-8.141469 2.49863-8.141469 2.49863-7.926276C2.49863-7.79477 2.582316-7.79477 2.785554-7.79477C3.526775-7.79477 3.526775-7.711083 3.526775-7.579577C3.526775-7.519801 3.514819-7.47198 3.478954-7.340473L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.976837C3.239851-.02391 3.526775 0 3.789788 0C3.897385 0 4.040847 0 4.040847-.215193C4.040847-.3467 3.969116-.3467 3.706102-.3467C2.761644-.3467 2.737733-.430386 2.737733-.609714C2.737733-.669489 2.761644-.765131 2.785554-.848817L3.550685-3.897385Z'/>

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -2,10 +2,10 @@
<!-- This file was generated by dvisvgm 2.8.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='65.486789pt' height='26.782394pt' viewBox='200.13332 78.704853 65.486789 26.782394'>
<defs>
<path id='g4-1' d='M5.152677-8.320797C5.068991-8.488169 5.045081-8.53599 4.877709-8.53599C4.698381-8.53599 4.674471-8.488169 4.590785-8.320797L.597758-.239103C.573848-.203238 .549938-.131507 .549938-.083686C.549938-.011955 .561893 0 .800996 0H8.942466C9.181569 0 9.193524-.011955 9.193524-.083686C9.193524-.131507 9.169614-.203238 9.145704-.239103L5.152677-8.320797ZM4.507098-7.436115L7.770859-.824907H1.255293L4.507098-7.436115Z'/>
<path id='g4-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g3-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g0-25' d='M8.631631-5.403736C8.631631-5.654795 8.547945-5.762391 8.464259-5.762391C8.416438-5.762391 8.308842-5.71457 8.296887-5.439601C8.249066-4.614695 7.412204-4.124533 6.635118-4.124533C5.941719-4.124533 5.34396-4.495143 4.722291-4.913574C4.076712-5.34396 3.431133-5.774346 2.654047-5.774346C1.542217-5.774346 .657534-4.925529 .657534-3.825654C.657534-3.56264 .753176-3.466999 .824907-3.466999C.944458-3.466999 .992279-3.694147 .992279-3.741968C1.052055-4.746202 2.032379-5.104857 2.654047-5.104857C3.347447-5.104857 3.945205-4.734247 4.566874-4.315816C5.212453-3.88543 5.858032-3.455044 6.635118-3.455044C7.746949-3.455044 8.631631-4.303861 8.631631-5.403736ZM8.631631-2.606227C8.631631-2.952927 8.488169-2.976837 8.464259-2.976837C8.416438-2.976837 8.308842-2.917061 8.296887-2.654047C8.249066-1.829141 7.412204-1.338979 6.635118-1.338979C5.941719-1.338979 5.34396-1.709589 4.722291-2.12802C4.076712-2.558406 3.431133-2.988792 2.654047-2.988792C1.542217-2.988792 .657534-2.139975 .657534-1.0401C.657534-.777086 .753176-.681445 .824907-.681445C.944458-.681445 .992279-.908593 .992279-.956413C1.052055-1.960648 2.032379-2.319303 2.654047-2.319303C3.347447-2.319303 3.945205-1.948692 4.566874-1.530262C5.212453-1.099875 5.858032-.669489 6.635118-.669489C7.770859-.669489 8.631631-1.554172 8.631631-2.606227Z'/>
<path id='g4-1' d='M5.152677-8.320797C5.068991-8.488169 5.045081-8.53599 4.877709-8.53599C4.698381-8.53599 4.674471-8.488169 4.590785-8.320797L.597758-.239103C.573848-.203238 .549938-.131507 .549938-.083686C.549938-.011955 .561893 0 .800996 0H8.942466C9.181569 0 9.193524-.011955 9.193524-.083686C9.193524-.131507 9.169614-.203238 9.145704-.239103L5.152677-8.320797ZM4.507098-7.436115L7.770859-.824907H1.255293L4.507098-7.436115Z'/>
<path id='g4-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g1-83' d='M5.347945-5.395766C5.355915-5.427646 5.371856-5.475467 5.371856-5.515318C5.371856-5.571108 5.324035-5.610959 5.268244-5.610959S5.196513-5.595019 5.108842-5.499377C5.021171-5.395766 4.813948-5.140722 4.726276-5.045081C4.415442-5.499377 3.913325-5.610959 3.506849-5.610959C2.399004-5.610959 1.45056-4.678456 1.45056-3.769863C1.45056-3.307597 1.697634-3.036613 1.737484-2.980822C2.000498-2.701868 2.231631-2.638107 2.805479-2.502615C3.084433-2.430884 3.100374-2.430884 3.331507-2.375093S4.072727-2.191781 4.072727-1.530262C4.072727-.836862 3.387298-.095641 2.550436-.095641C2.032379-.095641 1.083935-.255044 1.083935-1.243337C1.083935-1.267248 1.083935-1.43462 1.131756-1.625903L1.139726-1.705604C1.139726-1.801245 1.052055-1.809215 1.020174-1.809215C.916563-1.809215 .908593-1.777335 .868742-1.594022L.541968-.294894C.510087-.175342 .454296 .039851 .454296 .063761C.454296 .127522 .502117 .167372 .557908 .167372S.621669 .159402 .70934 .055791L1.091905-.390535C1.275218-.151432 1.729514 .167372 2.534496 .167372C3.690162 .167372 4.638605-.876712 4.638605-1.833126C4.638605-2.199751 4.519054-2.486675 4.303861-2.709838C4.064757-2.972852 3.801743-3.036613 3.427148-3.132254C3.196015-3.188045 2.885181-3.259776 2.701868-3.307597C2.462765-3.363387 2.016438-3.52279 2.016438-4.080697C2.016438-4.702366 2.685928-5.371856 3.498879-5.371856C4.216189-5.371856 4.710336-4.99726 4.710336-4.136488C4.710336-3.945205 4.678456-3.777833 4.678456-3.745953C4.678456-3.650311 4.750187-3.634371 4.805978-3.634371C4.901619-3.634371 4.909589-3.666252 4.941469-3.793773L5.347945-5.395766Z'/>
<path id='g2-22' d='M1.721544-.263014C2.020423 .011955 2.462765 .119552 2.86924 .119552C3.634371 .119552 4.160399-.394521 4.435367-.765131C4.554919-.131507 5.057036 .119552 5.475467 .119552C5.834122 .119552 6.121046-.095641 6.336239-.526027C6.527522-.932503 6.694894-1.661768 6.694894-1.709589C6.694894-1.769365 6.647073-1.817186 6.575342-1.817186C6.467746-1.817186 6.455791-1.75741 6.40797-1.578082C6.228643-.872727 6.001494-.119552 5.511333-.119552C5.164633-.119552 5.140722-.430386 5.140722-.669489C5.140722-.944458 5.248319-1.374844 5.332005-1.733499L5.66675-3.024658C5.71457-3.251806 5.846077-3.789788 5.905853-4.004981C5.977584-4.291905 6.109091-4.805978 6.109091-4.853798C6.109091-5.033126 5.965629-5.152677 5.786301-5.152677C5.678705-5.152677 5.427646-5.104857 5.332005-4.746202L4.495143-1.422665C4.435367-1.183562 4.435367-1.159651 4.27995-.968369C4.136488-.765131 3.670237-.119552 2.917061-.119552C2.247572-.119552 2.032379-.609714 2.032379-1.171606C2.032379-1.518306 2.139975-1.936737 2.187796-2.139975L2.725778-4.291905C2.785554-4.519054 2.881196-4.901619 2.881196-4.97335C2.881196-5.164633 2.725778-5.272229 2.570361-5.272229C2.462765-5.272229 2.199751-5.236364 2.10411-4.853798L.37061 2.068244C.358655 2.12802 .334745 2.199751 .334745 2.271482C.334745 2.450809 .478207 2.570361 .657534 2.570361C1.004234 2.570361 1.075965 2.295392 1.159651 1.960648L1.721544-.263014Z'/>
<path id='g2-27' d='M6.073225-4.507098C6.228643-4.507098 6.623163-4.507098 6.623163-4.889664C6.623163-5.152677 6.396015-5.152677 6.180822-5.152677H3.53873C1.745455-5.152677 .454296-3.156164 .454296-1.745455C.454296-.729265 1.111831 .119552 2.187796 .119552C3.598506 .119552 5.140722-1.398755 5.140722-3.19203C5.140722-3.658281 5.033126-4.112578 4.746202-4.507098H6.073225ZM2.199751-.119552C1.590037-.119552 1.147696-.585803 1.147696-1.41071C1.147696-2.12802 1.578082-4.507098 3.335492-4.507098C3.849564-4.507098 4.423412-4.25604 4.423412-3.335492C4.423412-2.917061 4.23213-1.912827 3.813699-1.219427C3.383313-.514072 2.737733-.119552 2.199751-.119552Z'/>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -2,10 +2,10 @@
<!-- This file was generated by dvisvgm 2.8.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='178.93733pt' height='10.626798pt' viewBox='143.657117 84.549551 178.93733 10.626798'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g1-97' d='M3.124284-3.036613C3.052553-3.172105 2.82142-3.514819 2.335243-3.514819C1.3868-3.514819 .342715-2.406974 .342715-1.227397C.342715-.398506 .876712 .079701 1.490411 .079701C2.000498 .079701 2.438854-.326775 2.582316-.486177C2.725778 .063761 3.267746 .079701 3.363387 .079701C3.730012 .079701 3.913325-.223163 3.977086-.358655C4.136488-.645579 4.24807-1.107846 4.24807-1.139726C4.24807-1.187547 4.216189-1.243337 4.120548-1.243337S4.008966-1.195517 3.961146-.996264C3.849564-.557908 3.698132-.143462 3.387298-.143462C3.203985-.143462 3.132254-.294894 3.132254-.518057C3.132254-.653549 3.203985-.924533 3.251806-1.123786S3.419178-1.801245 3.451059-1.944707L3.610461-2.550436C3.650311-2.741719 3.737983-3.076463 3.737983-3.116314C3.737983-3.299626 3.58655-3.363387 3.482939-3.363387C3.363387-3.363387 3.164134-3.283686 3.124284-3.036613ZM2.582316-.860772C2.183811-.310834 1.769365-.143462 1.514321-.143462C1.147696-.143462 .964384-.478207 .964384-.892653C.964384-1.267248 1.179577-2.12005 1.354919-2.470735C1.586052-2.956912 1.976588-3.291656 2.343213-3.291656C2.86127-3.291656 3.012702-2.709838 3.012702-2.614197C3.012702-2.582316 2.81345-1.801245 2.765629-1.594022C2.662017-1.219427 2.662017-1.203487 2.582316-.860772Z'/>
<path id='g1-109' d='M1.594022-1.307098C1.617933-1.42665 1.697634-1.729514 1.721544-1.849066C1.745455-1.928767 1.793275-2.12005 1.809215-2.199751C1.825156-2.239601 2.088169-2.757659 2.438854-3.020672C2.709838-3.227895 2.972852-3.291656 3.196015-3.291656C3.490909-3.291656 3.650311-3.116314 3.650311-2.749689C3.650311-2.558406 3.602491-2.375093 3.514819-2.016438C3.459029-1.809215 3.323537-1.275218 3.275716-1.060025L3.156164-.581818C3.116314-.446326 3.060523-.207223 3.060523-.167372C3.060523 .01594 3.211955 .079701 3.315567 .079701C3.459029 .079701 3.57858-.01594 3.634371-.111582C3.658281-.159402 3.722042-.430386 3.761893-.597758L3.945205-1.307098C3.969116-1.42665 4.048817-1.729514 4.072727-1.849066C4.184309-2.279452 4.184309-2.287422 4.367621-2.550436C4.630635-2.940971 5.00523-3.291656 5.539228-3.291656C5.826152-3.291656 5.993524-3.124284 5.993524-2.749689C5.993524-2.311333 5.65878-1.39477 5.507347-1.012204C5.427646-.804981 5.403736-.749191 5.403736-.597758C5.403736-.143462 5.778331 .079701 6.121046 .079701C6.902117 .079701 7.228892-1.036115 7.228892-1.139726C7.228892-1.219427 7.165131-1.243337 7.10934-1.243337C7.013699-1.243337 6.997758-1.187547 6.973848-1.107846C6.782565-.446326 6.447821-.143462 6.144956-.143462C6.017435-.143462 5.953674-.223163 5.953674-.406476S6.017435-.765131 6.097136-.964384C6.216687-1.267248 6.567372-2.183811 6.567372-2.630137C6.567372-3.227895 6.152927-3.514819 5.579078-3.514819C5.029141-3.514819 4.574844-3.227895 4.216189-2.733748C4.152428-3.371357 3.642341-3.514819 3.227895-3.514819C2.86127-3.514819 2.375093-3.387298 1.936737-2.81345C1.880946-3.291656 1.498381-3.514819 1.123786-3.514819C.844832-3.514819 .645579-3.347447 .510087-3.076463C.318804-2.701868 .239103-2.311333 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.621669-2.82142 .765131-3.291656 1.099875-3.291656C1.307098-3.291656 1.354919-3.092403 1.354919-2.917061C1.354919-2.773599 1.315068-2.622167 1.251308-2.359153C1.235367-2.295392 1.115816-1.825156 1.083935-1.713574L.789041-.518057C.757161-.398506 .70934-.199253 .70934-.167372C.70934 .01594 .860772 .079701 .964384 .079701C1.107846 .079701 1.227397-.01594 1.283188-.111582C1.307098-.159402 1.370859-.430386 1.41071-.597758L1.594022-1.307098Z'/>
<path id='g1-120' d='M3.993026-3.180075C3.642341-3.092403 3.626401-2.781569 3.626401-2.749689C3.626401-2.574346 3.761893-2.454795 3.937235-2.454795S4.383562-2.590286 4.383562-2.933001C4.383562-3.387298 3.881445-3.514819 3.58655-3.514819C3.211955-3.514819 2.909091-3.251806 2.725778-2.940971C2.550436-3.363387 2.13599-3.514819 1.809215-3.514819C.940473-3.514819 .454296-2.518555 .454296-2.295392C.454296-2.223661 .510087-2.191781 .573848-2.191781C.669489-2.191781 .68543-2.231631 .70934-2.327273C.892653-2.909091 1.370859-3.291656 1.785305-3.291656C2.096139-3.291656 2.247572-3.068493 2.247572-2.781569C2.247572-2.622167 2.15193-2.255542 2.088169-2.000498C2.032379-1.769365 1.857036-1.060025 1.817186-.908593C1.705604-.478207 1.41868-.143462 1.060025-.143462C1.028144-.143462 .820922-.143462 .653549-.255044C1.020174-.342715 1.020174-.67746 1.020174-.68543C1.020174-.868742 .876712-.980324 .70137-.980324C.486177-.980324 .255044-.797011 .255044-.494147C.255044-.127522 .645579 .079701 1.052055 .079701C1.474471 .079701 1.769365-.239103 1.912827-.494147C2.088169-.103611 2.454795 .079701 2.83736 .079701C3.706102 .079701 4.184309-.916563 4.184309-1.139726C4.184309-1.219427 4.120548-1.243337 4.064757-1.243337C3.969116-1.243337 3.953176-1.187547 3.929265-1.107846C3.769863-.573848 3.315567-.143462 2.8533-.143462C2.590286-.143462 2.399004-.318804 2.399004-.653549C2.399004-.812951 2.446824-.996264 2.558406-1.44259C2.614197-1.681694 2.789539-2.383064 2.82939-2.534496C2.940971-2.948941 3.219925-3.291656 3.57858-3.291656C3.618431-3.291656 3.825654-3.291656 3.993026-3.180075Z'/>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-1' d='M5.152677-8.320797C5.068991-8.488169 5.045081-8.53599 4.877709-8.53599C4.698381-8.53599 4.674471-8.488169 4.590785-8.320797L.597758-.239103C.573848-.203238 .549938-.131507 .549938-.083686C.549938-.011955 .561893 0 .800996 0H8.942466C9.181569 0 9.193524-.011955 9.193524-.083686C9.193524-.131507 9.169614-.203238 9.145704-.239103L5.152677-8.320797ZM4.507098-7.436115L7.770859-.824907H1.255293L4.507098-7.436115Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because it is too large Load Diff

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

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>
@ -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>
@ -857,28 +857,42 @@
amplitudes.$name.maxDepth
<ul>
<li><a href="apps/global.html#confval-21">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.maxDepth">[1]</a>
<li><a href="apps/global.html#confval-23">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.maxDepth">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.maxDist
<ul>
<li><a href="apps/global.html#confval-19">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.maxDist">[1]</a>
<li><a href="apps/global.html#confval-21">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.maxDist">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.maxPeriod
<ul>
<li><a href="apps/global.html#confval-15">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.maxPeriod">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.minDepth
<ul>
<li><a href="apps/global.html#confval-20">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.minDepth">[1]</a>
<li><a href="apps/global.html#confval-22">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.minDepth">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.minDist
<ul>
<li><a href="apps/global.html#confval-18">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.minDist">[1]</a>
<li><a href="apps/global.html#confval-20">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.minDist">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.minPeriod
<ul>
<li><a href="apps/global.html#confval-14">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.minPeriod">[1]</a>
</li>
</ul></li>
<li>
@ -892,42 +906,42 @@
amplitudes.$name.noiseBegin
<ul>
<li><a href="apps/global.html#confval-14">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-16">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.noiseBegin">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.noiseEnd
<ul>
<li><a href="apps/global.html#confval-15">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.noiseEnd">[1]</a>
<li><a href="apps/global.html#confval-17">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.noiseEnd">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.regionalize
<ul>
<li><a href="apps/global.html#confval-22">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.regionalize">[1]</a>
<li><a href="apps/global.html#confval-amplitudes.-name.regionalize">configuration value</a>
</li>
</ul></li>
<li>
amplitudes.$name.resp.maxFreq
<ul>
<li><a href="apps/global.html#confval-25">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.maxFreq">[1]</a>
<li><a href="apps/global.html#confval-26">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.maxFreq">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.resp.minFreq
<ul>
<li><a href="apps/global.html#confval-24">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.minFreq">[1]</a>
<li><a href="apps/global.html#confval-25">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.minFreq">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.resp.taper
<ul>
<li><a href="apps/global.html#confval-23">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.taper">[1]</a>
<li><a href="apps/global.html#confval-24">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.taper">[1]</a>
</li>
</ul></li>
<li>
@ -941,14 +955,14 @@
amplitudes.$name.signalBegin
<ul>
<li><a href="apps/global.html#confval-16">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-18">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.signalBegin">[1]</a>
</li>
</ul></li>
<li>
amplitudes.$name.signalEnd
<ul>
<li><a href="apps/global.html#confval-17">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-19">configuration value</a>, <a href="apps/global.html#confval-amplitudes.-name.signalEnd">[1]</a>
</li>
</ul></li>
<li>
@ -983,26 +997,26 @@
amplitudes.resp.maxFreq
<ul>
<li><a href="apps/global.html#confval-28">configuration value</a>, <a href="apps/global.html#confval-amplitudes.resp.maxFreq">[1]</a>
<li><a href="apps/global.html#confval-29">configuration value</a>, <a href="apps/global.html#confval-amplitudes.resp.maxFreq">[1]</a>
</li>
</ul></li>
<li>
amplitudes.resp.minFreq
<ul>
<li><a href="apps/global.html#confval-27">configuration value</a>, <a href="apps/global.html#confval-amplitudes.resp.minFreq">[1]</a>
</li>
</ul></li>
<li>
amplitudes.resp.taper
<ul>
<li><a href="apps/global.html#confval-26">configuration value</a>, <a href="apps/global.html#confval-amplitudes.resp.taper">[1]</a>
<li><a href="apps/global.html#confval-28">configuration value</a>, <a href="apps/global.html#confval-amplitudes.resp.minFreq">[1]</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li>
amplitudes.resp.taper
<ul>
<li><a href="apps/global.html#confval-27">configuration value</a>, <a href="apps/global.html#confval-amplitudes.resp.taper">[1]</a>
</li>
</ul></li>
<li>
amplitudes.saturationThreshold
<ul>
@ -1013,35 +1027,35 @@
amplitudes.ttt.interface
<ul>
<li><a href="apps/global.html#confval-0">configuration value</a>, <a href="apps/global.html#confval-29">[1]</a>, <a href="apps/global.html#confval-amplitudes.ttt.interface">[2]</a>
<li><a href="apps/global.html#confval-0">configuration value</a>, <a href="apps/global.html#confval-30">[1]</a>, <a href="apps/global.html#confval-amplitudes.ttt.interface">[2]</a>
</li>
</ul></li>
<li>
amplitudes.ttt.model
<ul>
<li><a href="apps/global.html#confval-1">configuration value</a>, <a href="apps/global.html#confval-30">[1]</a>, <a href="apps/global.html#confval-amplitudes.ttt.model">[2]</a>
<li><a href="apps/global.html#confval-1">configuration value</a>, <a href="apps/global.html#confval-31">[1]</a>, <a href="apps/global.html#confval-amplitudes.ttt.model">[2]</a>
</li>
</ul></li>
<li>
amplitudes.WoodAnderson.gain
<ul>
<li><a href="apps/global.html#confval-2">configuration value</a>, <a href="apps/global.html#confval-31">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.gain">[2]</a>
<li><a href="apps/global.html#confval-2">configuration value</a>, <a href="apps/global.html#confval-32">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.gain">[2]</a>
</li>
</ul></li>
<li>
amplitudes.WoodAnderson.h
<ul>
<li><a href="apps/global.html#confval-33">configuration value</a>, <a href="apps/global.html#confval-4">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.h">[2]</a>
<li><a href="apps/global.html#confval-34">configuration value</a>, <a href="apps/global.html#confval-4">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.h">[2]</a>
</li>
</ul></li>
<li>
amplitudes.WoodAnderson.T0
<ul>
<li><a href="apps/global.html#confval-3">configuration value</a>, <a href="apps/global.html#confval-32">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.T0">[2]</a>
<li><a href="apps/global.html#confval-3">configuration value</a>, <a href="apps/global.html#confval-33">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.T0">[2]</a>
</li>
</ul></li>
<li><a href="base/glossary.html#term-ArcLink"><strong>ArcLink</strong></a>
@ -1640,33 +1654,37 @@
</li>
<li><a href="apps/global.html#confval-12">amplitudes.$name.enableResponses</a>, <a href="apps/global.html#confval-amplitudes.-name.enableResponses">[1]</a>
</li>
<li><a href="apps/global.html#confval-21">amplitudes.$name.maxDepth</a>, <a href="apps/global.html#confval-amplitudes.-name.maxDepth">[1]</a>
<li><a href="apps/global.html#confval-23">amplitudes.$name.maxDepth</a>, <a href="apps/global.html#confval-amplitudes.-name.maxDepth">[1]</a>
</li>
<li><a href="apps/global.html#confval-19">amplitudes.$name.maxDist</a>, <a href="apps/global.html#confval-amplitudes.-name.maxDist">[1]</a>
<li><a href="apps/global.html#confval-21">amplitudes.$name.maxDist</a>, <a href="apps/global.html#confval-amplitudes.-name.maxDist">[1]</a>
</li>
<li><a href="apps/global.html#confval-20">amplitudes.$name.minDepth</a>, <a href="apps/global.html#confval-amplitudes.-name.minDepth">[1]</a>
<li><a href="apps/global.html#confval-15">amplitudes.$name.maxPeriod</a>, <a href="apps/global.html#confval-amplitudes.-name.maxPeriod">[1]</a>
</li>
<li><a href="apps/global.html#confval-18">amplitudes.$name.minDist</a>, <a href="apps/global.html#confval-amplitudes.-name.minDist">[1]</a>
<li><a href="apps/global.html#confval-22">amplitudes.$name.minDepth</a>, <a href="apps/global.html#confval-amplitudes.-name.minDepth">[1]</a>
</li>
<li><a href="apps/global.html#confval-20">amplitudes.$name.minDist</a>, <a href="apps/global.html#confval-amplitudes.-name.minDist">[1]</a>
</li>
<li><a href="apps/global.html#confval-14">amplitudes.$name.minPeriod</a>, <a href="apps/global.html#confval-amplitudes.-name.minPeriod">[1]</a>
</li>
<li><a href="apps/global.html#confval-13">amplitudes.$name.minSNR</a>, <a href="apps/global.html#confval-amplitudes.-name.minSNR">[1]</a>
</li>
<li><a href="apps/global.html#confval-14">amplitudes.$name.noiseBegin</a>, <a href="apps/global.html#confval-amplitudes.-name.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-16">amplitudes.$name.noiseBegin</a>, <a href="apps/global.html#confval-amplitudes.-name.noiseBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-15">amplitudes.$name.noiseEnd</a>, <a href="apps/global.html#confval-amplitudes.-name.noiseEnd">[1]</a>
<li><a href="apps/global.html#confval-17">amplitudes.$name.noiseEnd</a>, <a href="apps/global.html#confval-amplitudes.-name.noiseEnd">[1]</a>
</li>
<li><a href="apps/global.html#confval-22">amplitudes.$name.regionalize</a>, <a href="apps/global.html#confval-amplitudes.-name.regionalize">[1]</a>
<li><a href="apps/global.html#confval-amplitudes.-name.regionalize">amplitudes.$name.regionalize</a>
</li>
<li><a href="apps/global.html#confval-25">amplitudes.$name.resp.maxFreq</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.maxFreq">[1]</a>
<li><a href="apps/global.html#confval-26">amplitudes.$name.resp.maxFreq</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.maxFreq">[1]</a>
</li>
<li><a href="apps/global.html#confval-24">amplitudes.$name.resp.minFreq</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.minFreq">[1]</a>
<li><a href="apps/global.html#confval-25">amplitudes.$name.resp.minFreq</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.minFreq">[1]</a>
</li>
<li><a href="apps/global.html#confval-23">amplitudes.$name.resp.taper</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.taper">[1]</a>
<li><a href="apps/global.html#confval-24">amplitudes.$name.resp.taper</a>, <a href="apps/global.html#confval-amplitudes.-name.resp.taper">[1]</a>
</li>
<li><a href="apps/global.html#confval-10">amplitudes.$name.saturationThreshold</a>, <a href="apps/global.html#confval-amplitudes.-name.saturationThreshold">[1]</a>
</li>
<li><a href="apps/global.html#confval-16">amplitudes.$name.signalBegin</a>, <a href="apps/global.html#confval-amplitudes.-name.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-18">amplitudes.$name.signalBegin</a>, <a href="apps/global.html#confval-amplitudes.-name.signalBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-17">amplitudes.$name.signalEnd</a>, <a href="apps/global.html#confval-amplitudes.-name.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-19">amplitudes.$name.signalEnd</a>, <a href="apps/global.html#confval-amplitudes.-name.signalEnd">[1]</a>
</li>
<li><a href="apps/global.html#confval-amplitudes.aliases">amplitudes.aliases</a>
</li>
@ -1676,23 +1694,23 @@
</li>
<li><a href="apps/global.html#confval-amplitudes.iaspei">amplitudes.iaspei</a>
</li>
<li><a href="apps/global.html#confval-28">amplitudes.resp.maxFreq</a>, <a href="apps/global.html#confval-amplitudes.resp.maxFreq">[1]</a>
<li><a href="apps/global.html#confval-29">amplitudes.resp.maxFreq</a>, <a href="apps/global.html#confval-amplitudes.resp.maxFreq">[1]</a>
</li>
<li><a href="apps/global.html#confval-27">amplitudes.resp.minFreq</a>, <a href="apps/global.html#confval-amplitudes.resp.minFreq">[1]</a>
<li><a href="apps/global.html#confval-28">amplitudes.resp.minFreq</a>, <a href="apps/global.html#confval-amplitudes.resp.minFreq">[1]</a>
</li>
<li><a href="apps/global.html#confval-26">amplitudes.resp.taper</a>, <a href="apps/global.html#confval-amplitudes.resp.taper">[1]</a>
<li><a href="apps/global.html#confval-27">amplitudes.resp.taper</a>, <a href="apps/global.html#confval-amplitudes.resp.taper">[1]</a>
</li>
<li><a href="apps/global.html#confval-7">amplitudes.saturationThreshold</a>, <a href="apps/global.html#confval-amplitudes.saturationThreshold">[1]</a>
</li>
<li><a href="apps/global.html#confval-0">amplitudes.ttt.interface</a>, <a href="apps/global.html#confval-29">[1]</a>, <a href="apps/global.html#confval-amplitudes.ttt.interface">[2]</a>
<li><a href="apps/global.html#confval-0">amplitudes.ttt.interface</a>, <a href="apps/global.html#confval-30">[1]</a>, <a href="apps/global.html#confval-amplitudes.ttt.interface">[2]</a>
</li>
<li><a href="apps/global.html#confval-1">amplitudes.ttt.model</a>, <a href="apps/global.html#confval-30">[1]</a>, <a href="apps/global.html#confval-amplitudes.ttt.model">[2]</a>
<li><a href="apps/global.html#confval-1">amplitudes.ttt.model</a>, <a href="apps/global.html#confval-31">[1]</a>, <a href="apps/global.html#confval-amplitudes.ttt.model">[2]</a>
</li>
<li><a href="apps/global.html#confval-2">amplitudes.WoodAnderson.gain</a>, <a href="apps/global.html#confval-31">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.gain">[2]</a>
<li><a href="apps/global.html#confval-2">amplitudes.WoodAnderson.gain</a>, <a href="apps/global.html#confval-32">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.gain">[2]</a>
</li>
<li><a href="apps/global.html#confval-33">amplitudes.WoodAnderson.h</a>, <a href="apps/global.html#confval-4">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.h">[2]</a>
<li><a href="apps/global.html#confval-34">amplitudes.WoodAnderson.h</a>, <a href="apps/global.html#confval-4">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.h">[2]</a>
</li>
<li><a href="apps/global.html#confval-3">amplitudes.WoodAnderson.T0</a>, <a href="apps/global.html#confval-32">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.T0">[2]</a>
<li><a href="apps/global.html#confval-3">amplitudes.WoodAnderson.T0</a>, <a href="apps/global.html#confval-33">[1]</a>, <a href="apps/global.html#confval-amplitudes.WoodAnderson.T0">[2]</a>
</li>
<li><a href="apps/scanloc.html#confval-association.arrivalCountMinRes">association.arrivalCountMinRes</a>
</li>
@ -1866,11 +1884,25 @@
</li>
<li><a href="apps/global.html#confval-logging.utc">logging.utc</a>
</li>
<li><a href="apps/global.html#confval-34">magnitudes.$name.multiplier</a>, <a href="apps/global.html#confval-magnitudes.-name.multiplier">[1]</a>
<li><a href="apps/global.html#confval-40">magnitudes.$name.maxDepth</a>, <a href="apps/global.html#confval-magnitudes.-name.maxDepth">[1]</a>
</li>
<li><a href="apps/global.html#confval-38">magnitudes.$name.maxDist</a>, <a href="apps/global.html#confval-magnitudes.-name.maxDist">[1]</a>
</li>
<li><a href="apps/global.html#confval-43">magnitudes.$name.maxPeriod</a>, <a href="apps/global.html#confval-magnitudes.-name.maxPeriod">[1]</a>
</li>
<li><a href="apps/global.html#confval-39">magnitudes.$name.minDepth</a>, <a href="apps/global.html#confval-magnitudes.-name.minDepth">[1]</a>
</li>
<li><a href="apps/global.html#confval-37">magnitudes.$name.minDist</a>, <a href="apps/global.html#confval-magnitudes.-name.minDist">[1]</a>
</li>
<li><a href="apps/global.html#confval-42">magnitudes.$name.minPeriod</a>, <a href="apps/global.html#confval-magnitudes.-name.minPeriod">[1]</a>
</li>
<li><a href="apps/global.html#confval-41">magnitudes.$name.minSNR</a>, <a href="apps/global.html#confval-magnitudes.-name.minSNR">[1]</a>
</li>
<li><a href="apps/global.html#confval-35">magnitudes.$name.multiplier</a>, <a href="apps/global.html#confval-magnitudes.-name.multiplier">[1]</a>
</li>
<li><a href="apps/global.html#confval-magnitudes.-name.MwMapping">magnitudes.$name.MwMapping</a>
</li>
<li><a href="apps/global.html#confval-35">magnitudes.$name.offset</a>, <a href="apps/global.html#confval-magnitudes.-name.offset">[1]</a>
<li><a href="apps/global.html#confval-36">magnitudes.$name.offset</a>, <a href="apps/global.html#confval-magnitudes.-name.offset">[1]</a>
</li>
<li><a href="apps/global.html#confval-magnitudes.-name.region.-name.check">magnitudes.$name.region.$name.check</a>
</li>
@ -1900,33 +1932,33 @@
</li>
<li><a href="apps/scanloc.html#confval-pickComparisonLevel">pickComparisonLevel</a>
</li>
<li><a href="apps/global.html#confval-39">picker.AIC.filter</a>, <a href="apps/global.html#confval-picker.AIC.filter">[1]</a>
<li><a href="apps/global.html#confval-47">picker.AIC.filter</a>, <a href="apps/global.html#confval-picker.AIC.filter">[1]</a>
</li>
<li><a href="apps/global.html#confval-40">picker.AIC.minSNR</a>, <a href="apps/global.html#confval-picker.AIC.minSNR">[1]</a>
<li><a href="apps/global.html#confval-48">picker.AIC.minSNR</a>, <a href="apps/global.html#confval-picker.AIC.minSNR">[1]</a>
</li>
<li><a href="apps/global.html#confval-36">picker.AIC.noiseBegin</a>, <a href="apps/global.html#confval-picker.AIC.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-44">picker.AIC.noiseBegin</a>, <a href="apps/global.html#confval-picker.AIC.noiseBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-37">picker.AIC.signalBegin</a>, <a href="apps/global.html#confval-picker.AIC.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-45">picker.AIC.signalBegin</a>, <a href="apps/global.html#confval-picker.AIC.signalBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-38">picker.AIC.signalEnd</a>, <a href="apps/global.html#confval-picker.AIC.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-46">picker.AIC.signalEnd</a>, <a href="apps/global.html#confval-picker.AIC.signalEnd">[1]</a>
</li>
<li><a href="apps/global.html#confval-46">picker.BK.f1</a>, <a href="apps/global.html#confval-picker.BK.f1">[1]</a>
<li><a href="apps/global.html#confval-54">picker.BK.f1</a>, <a href="apps/global.html#confval-picker.BK.f1">[1]</a>
</li>
<li><a href="apps/global.html#confval-47">picker.BK.f2</a>, <a href="apps/global.html#confval-picker.BK.f2">[1]</a>
<li><a href="apps/global.html#confval-55">picker.BK.f2</a>, <a href="apps/global.html#confval-picker.BK.f2">[1]</a>
</li>
<li><a href="apps/global.html#confval-45">picker.BK.filterPoles</a>, <a href="apps/global.html#confval-picker.BK.filterPoles">[1]</a>
<li><a href="apps/global.html#confval-53">picker.BK.filterPoles</a>, <a href="apps/global.html#confval-picker.BK.filterPoles">[1]</a>
</li>
<li><a href="apps/global.html#confval-44">picker.BK.filterType</a>, <a href="apps/global.html#confval-picker.BK.filterType">[1]</a>
<li><a href="apps/global.html#confval-52">picker.BK.filterType</a>, <a href="apps/global.html#confval-picker.BK.filterType">[1]</a>
</li>
<li><a href="apps/global.html#confval-41">picker.BK.noiseBegin</a>, <a href="apps/global.html#confval-picker.BK.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-49">picker.BK.noiseBegin</a>, <a href="apps/global.html#confval-picker.BK.noiseBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-42">picker.BK.signalBegin</a>, <a href="apps/global.html#confval-picker.BK.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-50">picker.BK.signalBegin</a>, <a href="apps/global.html#confval-picker.BK.signalBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-43">picker.BK.signalEnd</a>, <a href="apps/global.html#confval-picker.BK.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-51">picker.BK.signalEnd</a>, <a href="apps/global.html#confval-picker.BK.signalEnd">[1]</a>
</li>
<li><a href="apps/global.html#confval-48">picker.BK.thrshl1</a>, <a href="apps/global.html#confval-picker.BK.thrshl1">[1]</a>
<li><a href="apps/global.html#confval-56">picker.BK.thrshl1</a>, <a href="apps/global.html#confval-picker.BK.thrshl1">[1]</a>
</li>
<li><a href="apps/global.html#confval-49">picker.BK.thrshl2</a>, <a href="apps/global.html#confval-picker.BK.thrshl2">[1]</a>
<li><a href="apps/global.html#confval-57">picker.BK.thrshl2</a>, <a href="apps/global.html#confval-picker.BK.thrshl2">[1]</a>
</li>
<li><a href="apps/global.html#confval-plugins">plugins</a>
</li>
@ -1947,8 +1979,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>
@ -1998,41 +2034,41 @@
</li>
<li><a href="apps/global.html#confval-scripts.crashHandler">scripts.crashHandler</a>
</li>
<li><a href="apps/global.html#confval-54">spicker.L2.detecFilter</a>, <a href="apps/global.html#confval-spicker.L2.detecFilter">[1]</a>
<li><a href="apps/global.html#confval-62">spicker.L2.detecFilter</a>, <a href="apps/global.html#confval-spicker.L2.detecFilter">[1]</a>
</li>
<li><a href="apps/global.html#confval-53">spicker.L2.filter</a>, <a href="apps/global.html#confval-spicker.L2.filter">[1]</a>
<li><a href="apps/global.html#confval-61">spicker.L2.filter</a>, <a href="apps/global.html#confval-spicker.L2.filter">[1]</a>
</li>
<li><a href="apps/global.html#confval-57">spicker.L2.marginAIC</a>, <a href="apps/global.html#confval-spicker.L2.marginAIC">[1]</a>
<li><a href="apps/global.html#confval-65">spicker.L2.marginAIC</a>, <a href="apps/global.html#confval-spicker.L2.marginAIC">[1]</a>
</li>
<li><a href="apps/global.html#confval-58">spicker.L2.minSNR</a>, <a href="apps/global.html#confval-spicker.L2.minSNR">[1]</a>
<li><a href="apps/global.html#confval-66">spicker.L2.minSNR</a>, <a href="apps/global.html#confval-spicker.L2.minSNR">[1]</a>
</li>
<li><a href="apps/global.html#confval-50">spicker.L2.noiseBegin</a>, <a href="apps/global.html#confval-spicker.L2.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-58">spicker.L2.noiseBegin</a>, <a href="apps/global.html#confval-spicker.L2.noiseBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-51">spicker.L2.signalBegin</a>, <a href="apps/global.html#confval-spicker.L2.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-59">spicker.L2.signalBegin</a>, <a href="apps/global.html#confval-spicker.L2.signalBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-52">spicker.L2.signalEnd</a>, <a href="apps/global.html#confval-spicker.L2.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-60">spicker.L2.signalEnd</a>, <a href="apps/global.html#confval-spicker.L2.signalEnd">[1]</a>
</li>
<li><a href="apps/global.html#confval-55">spicker.L2.threshold</a>, <a href="apps/global.html#confval-spicker.L2.threshold">[1]</a>
<li><a href="apps/global.html#confval-63">spicker.L2.threshold</a>, <a href="apps/global.html#confval-spicker.L2.threshold">[1]</a>
</li>
<li><a href="apps/global.html#confval-56">spicker.L2.timeCorr</a>, <a href="apps/global.html#confval-spicker.L2.timeCorr">[1]</a>
<li><a href="apps/global.html#confval-64">spicker.L2.timeCorr</a>, <a href="apps/global.html#confval-spicker.L2.timeCorr">[1]</a>
</li>
<li><a href="apps/global.html#confval-63">spicker.V.detecFilter</a>, <a href="apps/global.html#confval-spicker.V.detecFilter">[1]</a>
<li><a href="apps/global.html#confval-71">spicker.V.detecFilter</a>, <a href="apps/global.html#confval-spicker.V.detecFilter">[1]</a>
</li>
<li><a href="apps/global.html#confval-62">spicker.V.filter</a>, <a href="apps/global.html#confval-spicker.V.filter">[1]</a>
<li><a href="apps/global.html#confval-70">spicker.V.filter</a>, <a href="apps/global.html#confval-spicker.V.filter">[1]</a>
</li>
<li><a href="apps/global.html#confval-66">spicker.V.marginAIC</a>, <a href="apps/global.html#confval-spicker.V.marginAIC">[1]</a>
<li><a href="apps/global.html#confval-74">spicker.V.marginAIC</a>, <a href="apps/global.html#confval-spicker.V.marginAIC">[1]</a>
</li>
<li><a href="apps/global.html#confval-67">spicker.V.minSNR</a>, <a href="apps/global.html#confval-spicker.V.minSNR">[1]</a>
<li><a href="apps/global.html#confval-75">spicker.V.minSNR</a>, <a href="apps/global.html#confval-spicker.V.minSNR">[1]</a>
</li>
<li><a href="apps/global.html#confval-59">spicker.V.noiseBegin</a>, <a href="apps/global.html#confval-spicker.V.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-67">spicker.V.noiseBegin</a>, <a href="apps/global.html#confval-spicker.V.noiseBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-60">spicker.V.signalBegin</a>, <a href="apps/global.html#confval-spicker.V.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-68">spicker.V.signalBegin</a>, <a href="apps/global.html#confval-spicker.V.signalBegin">[1]</a>
</li>
<li><a href="apps/global.html#confval-61">spicker.V.signalEnd</a>, <a href="apps/global.html#confval-spicker.V.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-69">spicker.V.signalEnd</a>, <a href="apps/global.html#confval-spicker.V.signalEnd">[1]</a>
</li>
<li><a href="apps/global.html#confval-64">spicker.V.threshold</a>, <a href="apps/global.html#confval-spicker.V.threshold">[1]</a>
<li><a href="apps/global.html#confval-72">spicker.V.threshold</a>, <a href="apps/global.html#confval-spicker.V.threshold">[1]</a>
</li>
<li><a href="apps/global.html#confval-65">spicker.V.timeCorr</a>, <a href="apps/global.html#confval-spicker.V.timeCorr">[1]</a>
<li><a href="apps/global.html#confval-73">spicker.V.timeCorr</a>, <a href="apps/global.html#confval-spicker.V.timeCorr">[1]</a>
</li>
<li><a href="apps/global.html#confval-ttt.-name.tables">ttt.$name.tables</a>
</li>
@ -2554,15 +2590,66 @@
<ul>
<li><a href="base/glossary.html#term-magnitude-surface-wave-Ms_20"><strong>(Ms_20)</strong></a>
</li>
</ul></li>
<li>
magnitudes.$name.maxDepth
<ul>
<li><a href="apps/global.html#confval-40">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.maxDepth">[1]</a>
</li>
</ul></li>
<li>
magnitudes.$name.maxDist
<ul>
<li><a href="apps/global.html#confval-38">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.maxDist">[1]</a>
</li>
</ul></li>
<li>
magnitudes.$name.maxPeriod
<ul>
<li><a href="apps/global.html#confval-43">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.maxPeriod">[1]</a>
</li>
</ul></li>
<li>
magnitudes.$name.minDepth
<ul>
<li><a href="apps/global.html#confval-39">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.minDepth">[1]</a>
</li>
</ul></li>
<li>
magnitudes.$name.minDist
<ul>
<li><a href="apps/global.html#confval-37">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.minDist">[1]</a>
</li>
</ul></li>
<li>
magnitudes.$name.minPeriod
<ul>
<li><a href="apps/global.html#confval-42">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.minPeriod">[1]</a>
</li>
</ul></li>
<li>
magnitudes.$name.minSNR
<ul>
<li><a href="apps/global.html#confval-41">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.minSNR">[1]</a>
</li>
</ul></li>
<li>
magnitudes.$name.multiplier
<ul>
<li><a href="apps/global.html#confval-34">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.multiplier">[1]</a>
<li><a href="apps/global.html#confval-35">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.multiplier">[1]</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li>
magnitudes.$name.MwMapping
@ -2574,7 +2661,7 @@
magnitudes.$name.offset
<ul>
<li><a href="apps/global.html#confval-35">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.offset">[1]</a>
<li><a href="apps/global.html#confval-36">configuration value</a>, <a href="apps/global.html#confval-magnitudes.-name.offset">[1]</a>
</li>
</ul></li>
<li>
@ -2584,8 +2671,6 @@
<li><a href="apps/global.html#confval-magnitudes.-name.region.-name.check">configuration value</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li>
magnitudes.$name.region.$name.enable
@ -2757,70 +2842,70 @@
picker.AIC.filter
<ul>
<li><a href="apps/global.html#confval-39">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.filter">[1]</a>
<li><a href="apps/global.html#confval-47">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.filter">[1]</a>
</li>
</ul></li>
<li>
picker.AIC.minSNR
<ul>
<li><a href="apps/global.html#confval-40">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.minSNR">[1]</a>
<li><a href="apps/global.html#confval-48">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.minSNR">[1]</a>
</li>
</ul></li>
<li>
picker.AIC.noiseBegin
<ul>
<li><a href="apps/global.html#confval-36">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-44">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.noiseBegin">[1]</a>
</li>
</ul></li>
<li>
picker.AIC.signalBegin
<ul>
<li><a href="apps/global.html#confval-37">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-45">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.signalBegin">[1]</a>
</li>
</ul></li>
<li>
picker.AIC.signalEnd
<ul>
<li><a href="apps/global.html#confval-38">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-46">configuration value</a>, <a href="apps/global.html#confval-picker.AIC.signalEnd">[1]</a>
</li>
</ul></li>
<li>
picker.BK.f1
<ul>
<li><a href="apps/global.html#confval-46">configuration value</a>, <a href="apps/global.html#confval-picker.BK.f1">[1]</a>
<li><a href="apps/global.html#confval-54">configuration value</a>, <a href="apps/global.html#confval-picker.BK.f1">[1]</a>
</li>
</ul></li>
<li>
picker.BK.f2
<ul>
<li><a href="apps/global.html#confval-47">configuration value</a>, <a href="apps/global.html#confval-picker.BK.f2">[1]</a>
<li><a href="apps/global.html#confval-55">configuration value</a>, <a href="apps/global.html#confval-picker.BK.f2">[1]</a>
</li>
</ul></li>
<li>
picker.BK.filterPoles
<ul>
<li><a href="apps/global.html#confval-45">configuration value</a>, <a href="apps/global.html#confval-picker.BK.filterPoles">[1]</a>
<li><a href="apps/global.html#confval-53">configuration value</a>, <a href="apps/global.html#confval-picker.BK.filterPoles">[1]</a>
</li>
</ul></li>
<li>
picker.BK.filterType
<ul>
<li><a href="apps/global.html#confval-44">configuration value</a>, <a href="apps/global.html#confval-picker.BK.filterType">[1]</a>
<li><a href="apps/global.html#confval-52">configuration value</a>, <a href="apps/global.html#confval-picker.BK.filterType">[1]</a>
</li>
</ul></li>
<li>
picker.BK.noiseBegin
<ul>
<li><a href="apps/global.html#confval-41">configuration value</a>, <a href="apps/global.html#confval-picker.BK.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-49">configuration value</a>, <a href="apps/global.html#confval-picker.BK.noiseBegin">[1]</a>
</li>
</ul></li>
</ul></td>
@ -2829,28 +2914,28 @@
picker.BK.signalBegin
<ul>
<li><a href="apps/global.html#confval-42">configuration value</a>, <a href="apps/global.html#confval-picker.BK.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-50">configuration value</a>, <a href="apps/global.html#confval-picker.BK.signalBegin">[1]</a>
</li>
</ul></li>
<li>
picker.BK.signalEnd
<ul>
<li><a href="apps/global.html#confval-43">configuration value</a>, <a href="apps/global.html#confval-picker.BK.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-51">configuration value</a>, <a href="apps/global.html#confval-picker.BK.signalEnd">[1]</a>
</li>
</ul></li>
<li>
picker.BK.thrshl1
<ul>
<li><a href="apps/global.html#confval-48">configuration value</a>, <a href="apps/global.html#confval-picker.BK.thrshl1">[1]</a>
<li><a href="apps/global.html#confval-56">configuration value</a>, <a href="apps/global.html#confval-picker.BK.thrshl1">[1]</a>
</li>
</ul></li>
<li>
picker.BK.thrshl2
<ul>
<li><a href="apps/global.html#confval-49">configuration value</a>, <a href="apps/global.html#confval-picker.BK.thrshl2">[1]</a>
<li><a href="apps/global.html#confval-57">configuration value</a>, <a href="apps/global.html#confval-picker.BK.thrshl2">[1]</a>
</li>
</ul></li>
<li><a href="base/glossary.html#term-PKiKP-phase"><strong>PKiKP phase</strong></a>
@ -3007,6 +3092,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 +3106,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 +3291,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>
@ -3246,126 +3345,126 @@
spicker.L2.detecFilter
<ul>
<li><a href="apps/global.html#confval-54">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.detecFilter">[1]</a>
<li><a href="apps/global.html#confval-62">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.detecFilter">[1]</a>
</li>
</ul></li>
<li>
spicker.L2.filter
<ul>
<li><a href="apps/global.html#confval-53">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.filter">[1]</a>
<li><a href="apps/global.html#confval-61">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.filter">[1]</a>
</li>
</ul></li>
<li>
spicker.L2.marginAIC
<ul>
<li><a href="apps/global.html#confval-57">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.marginAIC">[1]</a>
<li><a href="apps/global.html#confval-65">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.marginAIC">[1]</a>
</li>
</ul></li>
<li>
spicker.L2.minSNR
<ul>
<li><a href="apps/global.html#confval-58">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.minSNR">[1]</a>
<li><a href="apps/global.html#confval-66">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.minSNR">[1]</a>
</li>
</ul></li>
<li>
spicker.L2.noiseBegin
<ul>
<li><a href="apps/global.html#confval-50">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-58">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.noiseBegin">[1]</a>
</li>
</ul></li>
<li>
spicker.L2.signalBegin
<ul>
<li><a href="apps/global.html#confval-51">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-59">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.signalBegin">[1]</a>
</li>
</ul></li>
<li>
spicker.L2.signalEnd
<ul>
<li><a href="apps/global.html#confval-52">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-60">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.signalEnd">[1]</a>
</li>
</ul></li>
<li>
spicker.L2.threshold
<ul>
<li><a href="apps/global.html#confval-55">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.threshold">[1]</a>
<li><a href="apps/global.html#confval-63">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.threshold">[1]</a>
</li>
</ul></li>
<li>
spicker.L2.timeCorr
<ul>
<li><a href="apps/global.html#confval-56">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.timeCorr">[1]</a>
<li><a href="apps/global.html#confval-64">configuration value</a>, <a href="apps/global.html#confval-spicker.L2.timeCorr">[1]</a>
</li>
</ul></li>
<li>
spicker.V.detecFilter
<ul>
<li><a href="apps/global.html#confval-63">configuration value</a>, <a href="apps/global.html#confval-spicker.V.detecFilter">[1]</a>
<li><a href="apps/global.html#confval-71">configuration value</a>, <a href="apps/global.html#confval-spicker.V.detecFilter">[1]</a>
</li>
</ul></li>
<li>
spicker.V.filter
<ul>
<li><a href="apps/global.html#confval-62">configuration value</a>, <a href="apps/global.html#confval-spicker.V.filter">[1]</a>
<li><a href="apps/global.html#confval-70">configuration value</a>, <a href="apps/global.html#confval-spicker.V.filter">[1]</a>
</li>
</ul></li>
<li>
spicker.V.marginAIC
<ul>
<li><a href="apps/global.html#confval-66">configuration value</a>, <a href="apps/global.html#confval-spicker.V.marginAIC">[1]</a>
<li><a href="apps/global.html#confval-74">configuration value</a>, <a href="apps/global.html#confval-spicker.V.marginAIC">[1]</a>
</li>
</ul></li>
<li>
spicker.V.minSNR
<ul>
<li><a href="apps/global.html#confval-67">configuration value</a>, <a href="apps/global.html#confval-spicker.V.minSNR">[1]</a>
<li><a href="apps/global.html#confval-75">configuration value</a>, <a href="apps/global.html#confval-spicker.V.minSNR">[1]</a>
</li>
</ul></li>
<li>
spicker.V.noiseBegin
<ul>
<li><a href="apps/global.html#confval-59">configuration value</a>, <a href="apps/global.html#confval-spicker.V.noiseBegin">[1]</a>
<li><a href="apps/global.html#confval-67">configuration value</a>, <a href="apps/global.html#confval-spicker.V.noiseBegin">[1]</a>
</li>
</ul></li>
<li>
spicker.V.signalBegin
<ul>
<li><a href="apps/global.html#confval-60">configuration value</a>, <a href="apps/global.html#confval-spicker.V.signalBegin">[1]</a>
<li><a href="apps/global.html#confval-68">configuration value</a>, <a href="apps/global.html#confval-spicker.V.signalBegin">[1]</a>
</li>
</ul></li>
<li>
spicker.V.signalEnd
<ul>
<li><a href="apps/global.html#confval-61">configuration value</a>, <a href="apps/global.html#confval-spicker.V.signalEnd">[1]</a>
<li><a href="apps/global.html#confval-69">configuration value</a>, <a href="apps/global.html#confval-spicker.V.signalEnd">[1]</a>
</li>
</ul></li>
<li>
spicker.V.threshold
<ul>
<li><a href="apps/global.html#confval-64">configuration value</a>, <a href="apps/global.html#confval-spicker.V.threshold">[1]</a>
<li><a href="apps/global.html#confval-72">configuration value</a>, <a href="apps/global.html#confval-spicker.V.threshold">[1]</a>
</li>
</ul></li>
<li>
spicker.V.timeCorr
<ul>
<li><a href="apps/global.html#confval-65">configuration value</a>, <a href="apps/global.html#confval-spicker.V.timeCorr">[1]</a>
<li><a href="apps/global.html#confval-73">configuration value</a>, <a href="apps/global.html#confval-spicker.V.timeCorr">[1]</a>
</li>
</ul></li>
<li><a href="base/glossary.html#term-Spooler"><strong>Spooler</strong></a>
@ -3514,7 +3613,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,68 +2,187 @@
All notable changes to SeisComP are documented here.
## 6.9.0
## x.y.z
```SC_API_VERSION 16.4.0```
```SC_API_VERSION 17.0.0```
- fdsnxml2inv
- Fix samplerate conversion from double to fraction.
- scmv
- Fix crash if origin depth is not set.
- fdsnws
- Fix data availability sort for Python >= 3.13.
- Fix conditional station requests. Requests involving the
If-Modified-Since header failed since Twisted
version 24.7. The http.stringToDatetime() now requires a
byte string.
With this version we add support for Qt 6 of all GUI applications. Binary distributions
will build against the Qt version which is available by default in the respective
Linux distribution, either Qt 5 or Qt 6.
The database schema changes from version 0.13.2 to 0.14. This basically incorporates
the addition of a new object `Catalog` as part of the EventParameters datamodel and
changes indexes from object `QCLog`. Both objects are not yet used in SeisComP and
they are added as basis for new features. The database schema applies changes in its
datatypes: BLOBS will be converted to LONGTEXT (MySQL) or TEXT (PostgreSQL, SQLite3).
The database migration to schema version 0.14 can be a long lasting operation so
please schedule a downtime of your system accordingly.
Furthermore the foreign key constraints from a concrete type table like Origin to
the Object table is removed. This constraint was never required by SeisComP itself
as it takes care of correct removal of all derived table rows but it introduces a
performance penalty when deleting objects. Dropping the constraint might affect
custom database script which rely on it. Please be aware of that change.
- seiscomp
- Fix module count with `seiscomp status`
- documentation
- Consider new parameters `values` and `range` in description of
configuration and command-line parameters which will be highlighted in
documentation and exposed in scconfig.
- trunk
- Fix LOCSAT station correction file lookup if `SEISCOMP_LOCSAT_TABLE_DIR`
environment variable is being used.
- Decode tokens when parsing a URL.
- scevent
- Provide optional REST API to return the target event an origin would be
associated to.
## 6.8.4
- scevent
- Read `eventAssociation.minimumScore` from configuration.
## 6.8.3
- caps_plugin
- Exit if pipe to `seedlink` is broken.
- trunk
- Fix crash with empty filter parameter list and newer
C++ compiler versions.
- Do not call combined:// real-time recordstream with zero
requests.
## 6.8.2
- ITAPER(): Support time spans with double precision, update filter
documentation.
- Application CLI option `-q, --quiet` took an argument which was not
correct. It has been converted to a switch without argument.
- Add `minPeriod` and `maxPeriod` to amplitude type configuration. Both
are checked against the measured period to skip emitting amplitudes which
are outside the allowed period range.
- Support amplitude data conversion without `enableResponses = true`,
e.g. when computing amplitudes on acceleration data. This implicitly
includes support for amplitude updates for such data.
- Add locrouter plugin, see
https://github.com/SeisComP/common/blob/master/plugins/locator/router/descriptions/global_locrouter.rst.
- Speed up trace rendering for large number of records.
- Add support for reading GeoJSON and BNA in fep directory
- Add support for reading fep file in spatial/vector
- Add GeoJSON write support
- Log each SQLite3 statement to debug if "debug" option is passed to URL.
- Support SI units in amplitude and magnitude configuration for `minDist`, `maxDist`,
`minDepth` and `maxDepth`.
```
amplitudes.MLv.maxDist = 8deg
amplitudes.MLv.maxDepth = 80km
```
- Add Catalog support to datamodel.
- magnitudes
- MLc:
- Add correction terms `c6` und `H` for considering vertical distance.
- Consider source depth instead of vertical distance between station
and origin for computing h.
- Add correction terms `c7` and `c8` for exponential decay.
- Update documentation with new style.
- ql2sc
- Add FocalMechanismReference to event for the preferred focal mechanism to
force association.
- GUI
- Add Qt6 support
- EventLists support passing the IDs of events in selected rows to an
external script which can be configured with `eventlist.scripts.export`.
- Add CSV table header information when exporting from the event list.
- Hypocentral instead of epicentral distances may be shown if configured
with `scheme.distanceHypocentral`.
- Allow map zooming with shift + left mouse + dragging.
- Fix segmentation fault if the magnitude table should be sorted and
station magnitudes could not be found in the database or memory.
- Save map measurements as GeoJSON
- Add support for built-in FontAwesome icons as map symbols.
- Print map symbols in map legends.
- scesv
- Support station annotations (shift+F9).
- scolv
- Attempt to fix a crash that is indicated by the terminal output:
- Focal mechanisms show the station distribution on the map if station
display is enabled (F9).
- Add LQT rotation to picker.
- Fix bug in picker when hidden unassociated picks become visible again after
transferring a solution to the locator window.
- If `olv.locator.presetFromOrigin = true` then the locator will be selected
according to the methodID and earthModelID. If that is not found then
the default locator will be set again rather than keeping the last selection.
- Set OriginLocatorView depth type to "depth type set by locator" when
presetFromOrigin is true and the depth type is unset, resetting the state of
the origin set before.
- Add tooltip with attribute content to method and earthModel label to
allow inspecting long strings which do not fit into the label itself.
- Add more flexible "Add station" dialog in picker which allows to filter
identifiers, network and station types and sensor units.
- Add more option to control initial picker behaviour.
```
QThread: Destroyed while thread is still running
picker.rotation = ZRT
picker.unit = Velocity
picker.limitFilterToZoomTrace = true
olv.loadAdditionalStations = true
```
## 6.8.1
- scconfig
- Allow parenthesis as profile names, e.g. for amplitude
profiles.
## 6.8.0
- NonLinLoc locator plugin
- Allow `SAVE_NLLOC_EXPECTATION` in NLL configuration
files.
- Increase precision to milliseconds for the following picker configuration values:
- `picker.preOffset`
- `picker.postOffset`
- `picker.minimumTimeWindow`
- Add `picker.auxiliary.profile` which supports multiple profiles to define
and check for auxiliary channels.
- Add controls to explicitly load auxiliary profiles
- Add controls to toggle visibility of auxiliary profiles
- Add spectrogram settings like in `scrttv` in a dockable widget (ctrl+shift+s) and
remove the very basic spectrogram settings from the toolbar.
- Add optional allow-/denylist for phases to be imported to ImportPicks dialog.
- Add default configuration options for "Import picks" dialog.
- scmv
- Handle unset origin.depth and do not crash.
- fdsnxml2inv
- Set default start date to 1902-01-01 rather than 1980-01-01 if a start
date is not specified for the StationXML node.
- Use best precision when showing number differences in warnings.
- scamp
- Add command-line option `--formatted` for generating formatted XML along
with `--ep`.
- scautoloc
- Add command-line option `--formatted` for generating formatted XML along
with `--ep`.
- scautopick
- Add command-line option `--formatted` for generating formatted XML along
with `--ep`.
- scdb
- Add option `-x` to wipe out all child objects of a public object from
database. This option might make the most sense on `Inventory`,
`EventParameters` or `Config`.
```
$ scdb -d localhost -x Inventory
```
- scevent
- Add command-line option `--formatted` for generating formatted XML along
with `--ep`.
- Add command-line option `--reprocess` for ignoring event objects in
input along with `--ep`.
- Add `eventAssociation.enablePreferredFMSelection` option to control
whether the preferred focalmechanism should be assigned automatically
or not.
- scmag
- Add command-line option `--formatted` for generating formatted XML along
with `--ep`.
- Fix segmentation fault when processing arrivals without distance.
- screpick
- Add command-line option `--formatted` for generating formatted XML along
with `--ep`.
- scdumpobject
- Tool removed entirely. The functionality has been added to scxmldump.
- scxmldump
- Add `--public-id` and `--with-childs` to export an object by its publicID
from the database. This will even work with database extensions by
loading the corresponding plugins such as `dmsm`.
- scwfparam
- Add support for custom list of periods.
- LocSAT
- Fix bug when a function with only one sample is
interpolated. That usually lead to location
errors such as "SVD routine can't decompose matrix".
- Rewrite old old code to support reentrant processing and dynamic station
count.
- Improve performance.
- Add PKiKP and PKIKP phases.
- Update PKKP table.
- Support custom phase list via [model].ph file.
- NLL
- Allow the use of SAVE_NLLOC_EXPECTATION.
- iLoc
- When reading a local velocity model file, If CONRAD is not specified,
the index of the Conrad discontinuity was not set properly, therefore iLoc
assumed the very first depth as the Conrad thus preventing the calculation
of Pg/Sg phases. The calculation of travel times from a local velocity model
was restricted to up to 6 degree distance.
The Conrad discontinuity is no longer set to the surface when CONRAD is not
specified in the local velocity model. Travel-time calculations from local
velocity models now extended to 10 degrees.
- Add `iLoc.usePickUncertainties` and `iLoc.defaultTimeError` to description.
- doc
- Replace Sphinx m2r2 with sphinx_mdinclude
- diskmon
- Fix stopped modules counter for diskmon.
## 6.7.9
@ -244,6 +363,9 @@ will be tackled in future updates.
- Allow to disable SQLite3 disc syncrhronization to decrease time needed to
save data in an SQLite3 database: `sqlite3:///path/to/file?sync=false`.
- Add support for all synchronous flags of SQLite3 (`sync=[normal|full|extra]`).
- Add option `amplitudes.[type].considerUnusedArrivals` which if enabled
considers stations with unused (disabled) arrivals for amplitude and
implicitly magnitude computations. Affects scamp, scmag and scolv.
- scolv
- Replace operator comment input control with a text edit control which
allows new lines. Furthermore the restriction of 160 characters has been

View File

@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 3bc149adccc76554f182c6e4d9132195
config: bceb215b9d1820772dc84871f8af945c
tags: 645f666f9bcd5a90fca523b33c5a78b7

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