obspy.core.stream.Stream.remove_sensitivity

Stream.remove_sensitivity(*args, **kwargs)[source]

Remove instrument sensitivity for all Traces in Stream.

For details see the corresponding remove_sensitivity() method of Trace.

>>> from obspy import read, read_inventory
>>> st = read()
>>> inv = read_inventory()
>>> st.remove_sensitivity(inv)  
<...Stream object at 0x...>

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.