I am trying to plot buoy data from GEONET. The following code snippet worked a few months ago:
from obspy.clients.fdsn import Client
from obspy import UTCDateTime
client = Client("GEONET")
starttime = UTCDateTime("2025-07-29T20:00:00.000")
endtime = starttime + 3600*24
network='NZ'
station='CHIT'
location ='41'
st = client.get_waveforms(network=network, location=location, station=station, channel="LTZ",starttime=starttime, endtime=endtime,attach_response=True)
st.remove_sensitivity()
st.plot()
and the data are not converted from V to m.
This can be seen if you print
st[0].stats.response