Find response for a given channel at given time.
>>> from obspy import read_inventory, UTCDateTime
>>> inventory = read_inventory("/path/to/BW_RJOB.xml")
>>> datetime = UTCDateTime("2009-08-24T00:20:00")
>>> response = inventory.get_response("BW.RJOB..EHZ", datetime)
>>> print 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.00
Stage 2: CoefficientsTypeResponseStage from V to COUNTS, ...
Stage 3: FIRResponseStage from COUNTS to COUNTS, gain: 1.00
Stage 4: FIRResponseStage from COUNTS to COUNTS, gain: 1.00
Parameters: |
|
---|---|
Return type: | |
Returns: | Response for timeseries specified by input arguments. |