obspy.realtime.rttrace.RtTrace.resample

RtTrace.resample(*args, **kwargs)

Resample trace data using Fourier method.

Parameters:
  • sampling_rate (float) The sampling rate of the resampled signal.
  • window (array_like, callable, string, float, or tuple, optional) Specifies the window applied to the signal in the Fourier domain. Defaults to 'hanning' window. See scipy.signal.resample() for details.
  • no_filter (bool, optional) Deactivates automatic filtering if set to True. Defaults to True.
  • strict_length (bool, optional) Leave traces unchanged for which endtime of trace would change. Defaults to False.

Note

This operation is performed in place on the actual data arrays. The raw data is not accessible anymore afterwards. To keep your original data, use copy() to create a copy of your trace object. This also makes an entry with information on the applied processing in stats.processing of this trace.

Uses scipy.signal.resample(). Because a Fourier method is used, the signal is assumed to be periodic.

Example

>>> tr = Trace(data=np.array([0.5, 0, 0.5, 1, 0.5, 0, 0.5, 1]))
>>> len(tr)
8
>>> tr.stats.sampling_rate
1.0
>>> tr.resample(4.0)  
<...Trace object at 0x...>
>>> len(tr)
32
>>> tr.stats.sampling_rate
4.0
>>> tr.data  
array([ 0.5       ,  0.40432914,  0.3232233 ,  0.26903012,  0.25 ...

This Page