diff --git a/pylot/core/pick/autopick.py b/pylot/core/pick/autopick.py index 35111071..4474baa8 100755 --- a/pylot/core/pick/autopick.py +++ b/pylot/core/pick/autopick.py @@ -157,7 +157,7 @@ def autopickstation(wfstream, pickparam, verbose=False): ndat = wfstream.select(component="1") if algoP == 'HOS' or algoP == 'ARZ' and zdat is not None: - msg = '##########################################\nautopickstation:' \ + msg = '##################################################\nautopickstation:' \ ' Working on P onset of station {station}\nFiltering vertical ' \ 'trace ...\n{data}'.format(station=zdat[0].stats.station, data=str(zdat)) @@ -552,7 +552,7 @@ def autopickstation(wfstream, pickparam, verbose=False): print('autopickstation: S-weight: {0}, SNR: {1}, ' 'SNR[dB]: {2}\n' - '################################################' + '##################################################' ''.format(Sweight, SNRS, SNRSdB)) ################################################################ # get Wood-Anderson peak-to-peak amplitude @@ -566,7 +566,7 @@ def autopickstation(wfstream, pickparam, verbose=False): 'AIC-SNR={0}, AIC-Slope={1}counts/s\n' \ '(min. AIC-SNR={2}, ' \ 'min. AIC-Slope={3}counts/s)\n' \ - '################################################' \ + '##################################################' \ ''.format(aicarhpick.getSNR(), aicarhpick.getSlope(), minAICSSNR, @@ -804,7 +804,7 @@ def iteratepicker(wf, NLLocfile, picks, badpicks, pickparameter): :param pickparameter: picking parameters from autoPyLoT-input file ''' - msg = '#######################################################\n' \ + msg = '##################################################\n' \ 'autoPyLoT: Found {0} bad onsets at station(s) {1}, ' \ 'starting re-picking them ...'.format(len(badpicks), badpicks) print(msg) @@ -823,7 +823,7 @@ def iteratepicker(wf, NLLocfile, picks, badpicks, pickparameter): badpicks[i][1] = picks[badpicks[i][0]]['P']['mpp'] - float(res) # get corresponding waveform stream - msg = '#######################################################\n' \ + msg = '##################################################\n' \ 'iteratepicker: Re-picking station {0}'.format(badpicks[i][0]) print(msg) wf2pick = wf.select(station=badpicks[i][0])