From eb153679baf5b657b1acbc15b653f21390d42794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Mon, 22 Jun 2015 14:37:47 +0200 Subject: [PATCH] Removed axis limits from plotting part. --- pylot/core/pick/utils.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pylot/core/pick/utils.py b/pylot/core/pick/utils.py index 47d06b69..60082836 100644 --- a/pylot/core/pick/utils.py +++ b/pylot/core/pick/utils.py @@ -13,7 +13,6 @@ import matplotlib.pyplot as plt from obspy.core import Stream, UTCDateTime import warnings - def earllatepicker(X, nfac, TSNR, Pick1, iplot=None): ''' Function to derive earliest and latest possible pick after Diehl & Kissling (2009) @@ -258,8 +257,6 @@ def fmpicker(Xraw, Xfilt, pickwin, Pick, iplot=None): loc='best') plt.text(Pick + 0.02, max(xraw) / 2, '%s' % FM, fontsize=14) ax = plt.gca() - ax.set_xlim( - [t[islope1[0][0]] - 0.1, t[islope1[0][len(islope1) - 1]] + 0.3]) plt.yticks([]) plt.title('First-Motion Determination, %s, Unfiltered Data' % Xraw[ 0].stats.station) @@ -275,8 +272,6 @@ def fmpicker(Xraw, Xfilt, pickwin, Pick, iplot=None): p4, = plt.plot(t[islope2], datafit2, '--g', linewidth=2) plt.text(Pick + 0.02, max(xraw) / 2, '%s' % FM, fontsize=14) ax = plt.gca() - ax.set_xlim( - [t[islope2[0][0]] - 0.1, t[islope2[0][len(islope2) - 1]] + 0.3]) plt.xlabel('Time [s] since %s' % Xraw[0].stats.starttime) plt.yticks([]) plt.show()