Removing instrument response in json format

Hi everyone,
My instrument response files are in json format and not the regular RESP or SAC PZ formats that I am familiar with. Can anyone help me with a script to remove the instrument response in the json format?
Your assistance will be much appreciated.
Thank you all in advance.

Hi,

I see only one way to solve this problem with ObsPy: You can read in the json data with Python’s json module. After that you can create a Response object with the help of different stage objects (dig into Obspy API documentation) and create an inventory from it. For the last step see
https://docs.obspy.org/tutorial/code_snippets/stationxml_file_from_scratch.html

1 Like

Hi,
Thank you very much for your reply. I will try that and see if I am able to get around it.
Much appreciated.