Hello everyone!
I use the following code to get the data:
inventory = client.get_stations(network=net, station=sta, location=loc, channel=chan, starttime=starttime, endtime=endtime, level='response')
network = inventory[0]
station = network[0]
channel = station[0]
response = channel.response
Then I get the necessary response information from the stage:
for stage in response.response_stages:
poles = stage.poles
zeros = stage.zeros
...
…
As I understand, the inventory object contains information about responses in displacement. But how can I get the recalculated information in velociti and acceleration and new sensitivity values?
Maybe I don’t understand something. My goal is to get the response I need in a format suitable for use in CSS3.0. I did this, but I need to understand exactly what units I’m working with and how I should convert.
My respons output format is:
theoretical 1 unknown paz IRIS-DMC
4.3449281462e+17 1.0000000000e+00
11
-3.6910000000e-02 3.7020000000e-02 0.0000000000e+00 0.0000000000e+00
-3.6910000000e-02 -3.7020000000e-02 0.0000000000e+00 0.0000000000e+00
-3.4300000000e+02 0.0000000000e+00 0.0000000000e+00 0.0000000000e+00
-3.7000000000e+02 4.6700000000e+02 0.0000000000e+00 0.0000000000e+00
-3.7000000000e+02 -4.6700000000e+02 0.0000000000e+00 0.0000000000e+00
-8.3600000000e+02 1.5220000000e+03 0.0000000000e+00 0.0000000000e+00
-8.3600000000e+02 -1.5220000000e+03 0.0000000000e+00 0.0000000000e+00
-4.9000000000e+03 4.7000000000e+03 0.0000000000e+00 0.0000000000e+00
-4.9000000000e+03 -4.7000000000e+03 0.0000000000e+00 0.0000000000e+00
-6.9000000000e+03 0.0000000000e+00 0.0000000000e+00 0.0000000000e+00
-1.5000000000e+04 0.0000000000e+00 0.0000000000e+00 0.0000000000e+00
6
0.0000000000e+00 0.0000000000e+00 0.0000000000e+00 0.0000000000e+00
0.0000000000e+00 0.0000000000e+00 0.0000000000e+00 0.0000000000e+00
-3.9200000000e+02 0.0000000000e+00 0.0000000000e+00 0.0000000000e+00
-1.9600000000e+03 0.0000000000e+00 0.0000000000e+00 0.0000000000e+00
-1.4900000000e+03 1.7400000000e+03 0.0000000000e+00 0.0000000000e+00
-1.4900000000e+03 -1.7400000000e+03 0.0000000000e+00 0.0000000000e+00
theoretical 2 unknown paz IRIS-DMC
1.0000000000e+00 1.0000000000e+00
0
0
theoretical 3 unknown paz IRIS-DMC
1.0000000000e+00 1.0000000000e+00
0
0
theoretical 4 unknown fir IRIS-DMC
3.0000000000e+04 1
1
1.0000000000e+00 0.0000000000e+00
0
Thanks for any help!