From b5d67b5526631c41730a6cce04233de0770e3add Mon Sep 17 00:00:00 2001 From: Claudio Satriano Date: Mon, 18 Jul 2022 11:41:35 +0200 Subject: [PATCH] Add `P` option to `wave_type` in config file --- sourcespec/configspec.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sourcespec/configspec.conf b/sourcespec/configspec.conf index ad6b65eb..14a7ae13 100644 --- a/sourcespec/configspec.conf +++ b/sourcespec/configspec.conf @@ -115,11 +115,11 @@ win_length = float(default=5.0) # SPECTRUM PARAMETERS -------- -# Wave type to analyse: 'S', 'SH' or 'SV' +# Wave type to analyse: 'P', 'S', 'SH' or 'SV' # If 'SH' or 'SV' are selected, traces are rotated in the radial-transverse # system. Transverse component is used for 'SH', radial (and vertical) # components are used for 'SV' -wave_type = option('S', 'SH', 'SV', default='S') +wave_type = option('P', 'S', 'SH', 'SV', default='S') # Integrate in time domain (default: integration in spectral domain) time_domain_int = boolean(default=False)