Bugfix where not giving origin with taupy would still use negative starttime
This commit is contained in:
parent
80835bc56e
commit
59e67b51d5
@ -393,7 +393,7 @@ class AutopickStation(object):
|
||||
' origin time using TauPy'.format(estFirstP, estFirstS))
|
||||
return estFirstP, estFirstS
|
||||
|
||||
if self.p_params.use_taup is False and self.p_params.pstart < 0:
|
||||
if (self.p_params.use_taup is False or not self.origin) and self.p_params.pstart < 0:
|
||||
# correct user mistake where a relative cuttime is selected (pstart < 0) but use of taupy is disabled/ has
|
||||
# not the required parameters
|
||||
self.p_params.pstart = 0
|
||||
|
Loading…
Reference in New Issue
Block a user