From 82e2c325aeb624ae845ddf00bac8662a19a1fd2c Mon Sep 17 00:00:00 2001 From: Ludger Kueperkoch Date: Wed, 29 Jul 2020 14:51:23 +0200 Subject: [PATCH] Return 'N' (noisy) for first motion instead None. --- pylot/core/pick/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/pick/utils.py b/pylot/core/pick/utils.py index de290978..cf803855 100644 --- a/pylot/core/pick/utils.py +++ b/pylot/core/pick/utils.py @@ -210,7 +210,7 @@ def fmpicker(Xraw, Xfilt, pickwin, Pick, iplot=0, fig=None, linecolor='k'): assert isinstance(Xraw, Stream), "%s is not a stream object" % str(Xraw) assert isinstance(Xfilt, Stream), "%s is not a stream object" % str(Xfilt) - FM = None + FM = 'N' if Pick is not None: print("fmpicker: Get first motion (polarity) of onset using unfiltered seismogram...")