obspy.core.trace.Trace.remove_sensitivity
- Trace.remove_sensitivity(inventory=None)[source]
Remove instrument sensitivity.
- Parameters:
inventory (
Inventory
or None.) – Station metadata to use in search for adequate response. If inventory parameter is not supplied, the response has to be attached to the trace withobspy.core.trace.Trace.attach_response()
beforehand.
Example
>>> from obspy import read, read_inventory >>> tr = read()[0] >>> inv = read_inventory() >>> tr.remove_sensitivity(inv) <...Trace object at 0x...>