obspy.core.stream.Stream.remove_response
- Stream.remove_response(*args, **kwargs)[source]
Deconvolve instrument response for all Traces in Stream.
For details see the corresponding
remove_response()
method ofTrace
.>>> from obspy import read, read_inventory >>> st = read() >>> inv = read_inventory() >>> st.remove_response(inventory=inv) <...Stream object at 0x...> >>> st.plot()
Note
This operation is performed in place on the actual data arrays. The raw data is not accessible anymore afterwards. To keep your original data, use
copy()
to create a copy of your stream object.