Geometric Attenuation

Hi Obspy team,

I have a field data that needs to be corrected by an offset-dependent correction factor of the form y(r)= A · r^α ( more details can be found at: Schäfer 2012)

I was wondering if there is any capability within obspy to apply such a correction to the amplitude of each receiver based on their distance from our source?

Thank you in advance

No, there is no such capability. But it is easy to manipulate Trace’s data in Python.

trace.data = trace.data * correction_factor
3 Likes