obspy.core.trace.Trace.attach_response
- Trace.attach_response(inventories)[source]
Search for and attach channel response to the trace as
obspy.core.trace.Trace
.stats.response. Raises an exception if no matching response can be found. To subsequently deconvolve the instrument response useobspy.core.trace.Trace.remove_response()
.>>> from obspy import read, read_inventory >>> st = read() >>> tr = st[0] >>> inv = read_inventory() >>> tr.attach_response(inv) >>> print(tr.stats.response) Channel Response From M/S (Velocity in Meters per Second) to COUNTS (Digital Counts) Overall Sensitivity: 2.5168e+09 defined at 0.020 Hz 4 stages: Stage 1: PolesZerosResponseStage from M/S to V, gain: 1500 Stage 2: CoefficientsTypeResponseStage from V to COUNTS, ... Stage 3: FIRResponseStage from COUNTS to COUNTS, gain: 1 Stage 4: FIRResponseStage from COUNTS to COUNTS, gain: 1