The input time series is first low passed to remove any power above the new Nyquist frequency. There are two available low pass filters:
LALDButterworthREAL4TimeSeries() function
from the tdfilters package. The filter order is
LALDIIRFilterREAL4Vector() function
from the tdfilters package. This applies an FIR filter with coefficents
generated by the LDAS firlp() dataconditioning API action. FIR
coefficents are available for downsampling by a factor of 2, 4 or 8. An
attempt to downsample by any other ratio will cause an error. The FIR
coeffients are equivalent to the default resample() action in the
dataconditioning API.
The FIR filter causes the a time delay of 10 points in the output time series
and corruption of the first
points.
is given by the order of the
filter by
, where
is the resampling ratio. To
account for this, we do the following:
Inf.
The filter coefficents used were produced by LDAS-CIT running version 0.7.0 of LDAS. See the LDAS dataconditioning API documentation for more information.