📄 s_wplot.m
字号:
function aux=s_wplot(seismic,varargin)
% Function plots seismic data in wiggle-trace form.
% By default, positive deflections are filled black.
% Written by E. R.: April 15, 2000
% Last updated: October 19, 2005; Changed the default for parameter "scale" to "no".
%
% aux=s_wplot(seismic,varargin)
% INPUT
% seismic seismic structure
% varargin one or more cell arrays; the first element of each cell array is a keyword,
% the other elements are parameters. Presently, keywords are:
% 'annotation' 2-element or 3-element cell array. Defines a header mnemonic whose values are
% used to annotate the horizontal axis. Default: {'annotation','trace_no'}
% 'aindex annotation index; used to specify which traces to annotate with the
% value of the header selected via keyword annotation.
% EXAMPLE {'aindex',10:10:1000} every tenth trace annotated,
% starting with trace 10
% Default: {'aindex',[]} Matlab-default annotation
% 'deflection' trace deflection in units of trace spacing.
% Default: ('deflection',1.25}
% 'direction' 2-element cell array defining plot direction. Possible values are:
% left-to-right, 'l2r', and right-to-left, 'r2l'. Default: {'direction','l2r')
% 'figure_only' specifies if only a figure window should be created; possible values:
% 'yes', 'no'. Default: {'figure_only','no'}
% 'figure' Specifies if new figure should be created or if the seismic
% traces should be plotted to an existing figure. Possible values
% are 'new' and any other string.
% Default: {'figure','new'}
% 'interpol' 2-element cell array which specifies how data should be interpolated in time.
% Possible values are 'linear', 'cubic', and 'v5cubic'.
% 'cubic' - piecewise cubic Hermite interpolation
% 'v5cubic' - the cubic interpolation from MATLAB 5, which does not
% extrapolate and uses 'spline' if X is not equally spaced.
% Default: {'interpol','v5cubic'}
% 'orient' Plot orientation. Possible values are: 'portrait' and 'landscape'
% Default: {'orient','landscape'} for more than 10 traces
% {'orient','portrait'} for 10 or fewer traces
% 'peak_fill' 2-element cell array which specifies color of peak fill. Possible values are
% all permissible colors or the empty string. In the latter case peaks are not filled.
% Default: {'peak_fill','k'}
% 'pixels' 2-element cell array. Minimum number of interpolation points to use for display.
% The greater the number the smoother the display if 'interpol' is 'cubic'.
% Default: {'pixels',500}
% 'polarity' 2-element cell array. Possible values are 1 and -1;
% Default: {'polarity',1}
% 'quality' 2-element cell array. Possible values are 'draft' and 'high'
% 'draft' quality (default) is faster and intended for screen and b/w hard copies;
% 'high' quality is for color copies (there is no difference between
% 'draft' and 'high' quality for screen displays and b/w copies).
% Default: {'quality','draft'}
% 'scale' 2-element cell array which specifies if traces should be scaled individually.
% Possible values are 'yes', 'no', or the actual scale. This may be a scalar or a
% vector whose number of elements is equal to the number of traces.
% separation. The scale actually used must be obtained by specifying the output
% argument "aux".
% Default: {'scale','no'}
% 'spacing' 2-element cell array which specifies if traces should be
% equidistant ('equal') or non uniformly ('nonequal') spaced;
% in the latter case the header mnemonic used for annotation defines
% the trace-to-trace separation.
% Default: {'spacing','equal'}
% 'times' 2-element or 3-element cell array
% {'times',vector of first and last time to plot} or ('times',first,last}.
% Default: {'times',seismic.first,seismic.last} which is
% equivalent to {'times',[seismic.first,seismic.last]}
% 'title' 2-element cell array consisting of the keyword 'title' and a title string;
% no title is plotted if the title string is empty.
% Default: {'title',seismic.name)
% 'traces' 2-element or 3-element cell array. The second element can be an array of
% trace numbers or it can be a string. If it is a string it can be a header
% mnemonic or it can contain a logical expression involving header values to
% include. A "pseudo-header" 'trace_no' can also be used.
% If the second element is a string containing a header mnemonic there must
% be a third element containing a vector of values. (see "s_select")
% Default: {'traces',[]} which is equivalent to
% {'traces',1:ntr} where ntr denotes the number of traces in the
% input data set (ntr = size(seismic.traces,2))
% 'tracking' track cursor; possible values are 'yes' and 'no'
% Default: {'tracking','yes'}
% 'trough_fill' 2-element cell array which specifies color of trough fill.
% Possible values are all permissible colors or the empty string.
% In the latter case troughs are not filled.
% Default: {'trough_fill',''}
% 'wiggle' 2-element cell array which specifies color of wiggles.
% Possible values are all permissible colors or the empty string.
% In the latter case wiggles are not plotted.
% Default: {'wiggle','k'}
%
% OUTPUT
% aux optional structure with scale factor(s) used (required if seismic
% data are to be plotted with the same scaling in different plots)
% 'scale' field with scale factor(s) used
% 'figure_handle' handle of the figure with the plot
global S4M
aux=[];
if ~isstruct(seismic)
seismic=s_convert(seismic,1,1);
seismic.units='Samples';
end
ntr=size(seismic.traces,2);
% Set default values
param.annotation='trace_no';
if ntr < 11
param.aindex=1:ntr;
elseif ntr < 21
param.aindex=1:2:ntr;
else
param.aindex=[];
end
param.deflection=1.25;
param.direction='l2r';
param.figure='new';
param.figure_only='no';
param.first=1;
param.inc=[];
param.interactive=1;
param.interpol='v5cubic';
param.orient=[];
param.peak_fill='k';
param.pixels=500;
param.polarity=1;
param.quality='draft';
param.scale='no';
param.spacing='equal';
param.times=[];
param.title=strrep(seismic.name,'_','\_');
param.traces=[];
param.tracking='yes';
param.trough_fill='';
param.wiggle='k';
param.wiggle_width=0.5;
% Decode and assign input arguments
param=assign_input(param,varargin,'s_wplot');
history=S4M.history; % Preserve value of global variable S4M.history
S4M.history=0;
if ~isempty(param.traces)
if length(param.traces) <= 1
seismic=s_select(seismic,{'traces',param.traces});
else
seismic=s_select(seismic,{'traces',param.traces{1},param.traces{2}});
end
ntr=size(seismic.traces,2);
end
if ~isempty(param.times)
if length(param.times) <= 1
seismic=s_select(seismic,{'times',param.times});
elseif iscell(param.times)
seismic=s_select(seismic,{'times',param.times{1},param.times{2}});
else
seismic=s_select(seismic,{'times',param.times(1),param.times(2)});
end
end
if strcmp(param.peak_fill,'gray')
param.peak_fill=[0.6,0.6,0.6];
elseif strcmp(param.peak_fill,'none')
param.peak_fill=[];
end
if strcmp(param.trough_fill,'gray')
param.trough_fill=[0.6,0.6,0.6];
elseif strcmp(param.trough_fill,'none')
param.trough_fill=[];
end
if strcmp(param.wiggle,'gray')
param.wiggle=[0.6,0.6,0.6];
elseif strcmp(param.wiggle,'none')
param.wiggle=[];
end
S4M.history=history;
annotation=s_gh(seismic,param.annotation);
if ntr == 1
uniform=logical(1);
annotlog=logical(0);
else
ddd=diff(annotation);
annotlog=(max(ddd)==min(ddd)) & ddd(1) ~= 0 & isempty(param.aindex);
if annotlog
uniform=logical(0);
else
if strcmp(param.spacing,'equal')
uniform=logical(1); % Uniform trace-to-trace distance
else
uniform=logical(0);
end
end
end
[nsamp,ntr]=size(seismic.traces);
if nsamp*ntr == 0
disp([' Alert from "s_wplot": Data set "',seismic.name,'" has no traces to plot'])
return
end
% Set indices of trace headers for annotation
if isempty(param.aindex)
indices=1:max([round(ntr/7),1]):ntr;
else
indices=param.aindex(find(param.aindex > 0 & param.aindex <= ntr));
end
if nsamp <= 1
disp([' Only one sample per trace; s_wplot did not plot data set "',seismic.name,'"'])
return
end
% Change polarity if requested
if param.polarity < 0
seismic.traces=-seismic.traces;
end
% Interpolate data if necessary
if (strcmpi(param.interpol,'v5cubic') | strcmpi(param.interpol,'cubic')) & nsamp < param.pixels
if isfield(seismic,'null') & isnan(seismic.null)
for ii=1:ntr % Replace last NaN at the top and first NaN at the bottom by zero
idx=find(~isnan(seismic.traces(:,ii)));
if ~isempty(idx)
if idx(1) > 1
seismic.traces(idx(1)-1,ii)=0;
end
if idx(end) < nsamp
seismic.traces(idx(end)+1,ii)=0;
end
end
end
end
npix=round(param.pixels/(nsamp-1))*(nsamp-1);
dti=(seismic.last-seismic.first)/npix;
times=(seismic.first:dti:seismic.last)';
yi=interp1(seismic.first:seismic.step:seismic.last,seismic.traces,times,param.interpol);
else
% dti=seismic.step;
times=(seismic.first:seismic.step:seismic.last)';
yi=seismic.traces;
end
trace_max=max(abs(yi));
% Compute horizontal trace locations
if uniform
xi=1:ntr;
else
xi=annotation;
if min(xi) == max(xi) & length(xi) > 1
disp([' Header requested for annotation ("',param.annotation,'") is constant;'])
disp(' please use uniform spacing')
error(' Abnormal termination')
end
end
% Trace-to-trace separation
if ntr > 1
dx=(max(xi)-min(xi))/(ntr-1);
else
dx=1;
end
% Scale data
if ischar(param.scale)
if strcmpi(param.scale,'yes')
scale=(dx*param.deflection)./(trace_max+eps)';
yi=yi*spdiags(scale,0,ntr,ntr);
else
scale=dx*param.deflection/(max(trace_max)+eps);
yi=yi*scale;
end
else
scale=param.scale;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -