Returns poles, zeros, normalization factor and sensitivity for a single channel at a given time.
Parameters: |
|
---|---|
Returns: | Dictionary containing PAZ information. |
Example
>>> from obspy.arclink import Client
>>> from obspy import UTCDateTime
>>> client = Client("webdc.eu", 18001, user='test@obspy.org')
>>> t = UTCDateTime(2009, 1, 1)
>>> paz = client.getPAZ('BW', 'MANZ', '', 'EHZ', t)
>>> paz
AttribDict({'poles': [(-0.037004+0.037016j), (-0.037004-0.037016j),
(-251.33+0j), (-131.04-467.29j),
(-131.04+467.29j)],
'sensitivity': 2516778600.0,
'zeros': [0j, 0j],
'name': 'LMU:STS-2/N/g=1500',
'normalization_factor': 60077000.0})