2-D Seismic Data Processing Exercise |
In this part of the tutorial, we will start processing the Nankai dataset by attenuating noise using frequency filtering.
To reproduce the denoising result, run
scons signal.viewTo display the Fourier-domain functions, run
scons fft.view scons mute.view scons filter.view
The mute function is implemented in the attached filter.c program and is designed as a triangular wedge controlled by two command-line parameters: velocities v1 and v2. The filter passes seismic events with velocities higher than v2, attenuates those with velocities smaller than v1, and makes a smooth transition in between using a sine taper.
fft,filter
Figure 2. The 2-D Fourier spectrum of the Nankai shot before (a) and after (b) noise attenuation. |
---|
signal
Figure 3. Shot gather separated into signal and noise. The noise section is gained to demonstrate that it contains no useful signal. |
---|
To run the noise attenuation filter on all shot gathers, run
scons fshots.view
2-D Seismic Data Processing Exercise |