[bugfix] one filter parameter was type string and caused problems when parsing the parameters to the filter function of an obspy object

This commit is contained in:
Sebastian Wehling-Benatelli 2015-06-25 10:24:17 +02:00
parent 7ec28664b4
commit 7635f790fd

View File

@ -10,7 +10,7 @@ FILTERDEFAULTS = {'P': {'filtertype': None,
'order': None,
'freq': None},
'S': {'filtertype': 'bandpass',
'order': '4',
'order': 4,
'freq': [.5, 5]}}
OUTPUTFORMATS = {'QuakeML':'QUAKEML', 'VelEst':'VELEST'}
OUTPUTFORMATS = {'QuakeML':'QUAKEML', 'VelEst':'VELEST'}