Temporal Aliasing#

Practical Seismic Data Processing Geophysical Analysis Group Project

What is it?#

At high frequencies, data exceeding the Nyquist frequency will be aliased, and should be removed. At these frequencies the temporal sampling rate of our data is unable to constrain the signal, and will lead to noise in our data. (e.g. if the data is sampled at \(4\,ms\), the Nyquist frequency will be \(125\,Hz\))

\[f_{\text{Nyq}}=\frac{1}{2{\Delta}t}\]
\[{\Delta}t\leq\frac{1}{2f_{\text{Nyq}}}\]

Time dimension \(t\) is controlled by the temporal sampling of our traces (e.g. \(4\,ms\) in our dataset), while distance/offset dimension \(x\) is controlled by the spacing of our traces. For a given lateral wavenumber \(k_{x}\), the FK migration is remapping the temporal frequency \({\omega}\) to a new vertical wavenumber \(k_{z}\).

\[{\omega}=\frac{v}{2}\sqrt{k_{x}^2+k_{z}^2}\]

Filtering in seismic data processing is used to remove noise at very high or low frequencies (i.e. outside of the bandwidth of the main signal). This is one of the most effective noise removal steps, and should be done as early as possible in the processing flow.

Practice 1#

A marine seismic survey is carried out using a shot interval of \(20\,m\), and a cable containing \(120\) non-overlapping hydrophone groups with a spacing of \(10\,m\). The hydrophones in water are at a depth of \(8\,m\). Given sound speed in water is \(1500\,m/s\).

  • Work out the notch frequencies, which limits the available frequencies in the seismic data.

  • Accroding to the notch frequency, work out the maximum time sampling rate (in integer ms) needed in field data acquisition.

# work out the delay time by distance / velocity

delay_t = 8 / 1500
notch_freq = 1 / (2 * delay_t)

print("The notch frequency is ", notch_freq, "Hz.")
The notch frequency is  93.75 Hz.
# work out the max delta t by the Nyquist equation

max_delta_t = 1 / (2 * notch_freq) # in seconds

print("The maximum time sampling rate is ", int(max_delta_t*1000), "ms.")
The maximum time sampling rate is  5 ms.

Reference#

2022 notes and practical from Lecture 5 of the module ESE 60023 Seismic Processing and Lecture 2 of the module ESE 70015 Advance Seismic Processing.