Thursday 14 December 2017

LAB 01 - SHOT NUMBER 4 TO 6

​​In this section, displaying a group of seismic shot gathers concatenated together using the same function extracting_shots.m. I have extract shot gather number 4-6 where provided shot_num=4:6; in the folllowing MATLAB code script.

MATLAB SCRIPT 1.3


load SeismicData_C.mat
whos

%% Extract geometrical acquisition parameter
load ('SeismicData_C.mat','H')
[sx,sy,gx,gy,shot_gathers,num_trace_per_sg,sz,gz] = extracting_geometry(H);

%% Wiggle display shot number 4 to 6
load SeismicData_C.mat
shot_num=4:6;
p=0;
[Dshot,dt,dx,t,offset]=extracting_shots(D,H,shot_num ,p);
scale=1;

Picture
Figure 1: variable area display shot number 4 to 6

%% Display grey scaled variable density display
mwigb(Dshot,scale,offset,t)
xlabel('Offset(ft)','FontSize',14)
ylabel('Time(s)','FontSize',14)

Picture
Figure 2: grey scaled density display shot no 4 to 6

%% Display color variable density display
figure,simage_display(Dshot,offset,t,0)
xlabel('Offset(ft)','FontSize',14)
ylabel('Time(s)','FontSize',14)

Picture
Figure 3: colored variable density display shot no 4 to 6

Picture
Figure 4: wiggle on top of colored plotting area display shot gather no 4 to 6


No comments:

Post a Comment

LAB 06 - STATIC CORRECTIONS

MATLAB SCRIPT LAB 6.1 load SeismicData_gain_bpf_sdecon_gain_sorted_nmo_corrected_stacked_C.mat cmp_num t Dstacked The following MATLAB...