WINGH | R Documentation |
Window a time slice of seismic data and extract from a GH structure.
WINGH(GH, sel = 1, WIN = c(0,1) )
GH |
RSEIS seismic list |
sel |
Select which traces to extract |
WIN |
Time window to extract (seconds from the beginning of the first trace.) |
Preserves the data structure of the GH list. The purpose of this function is to extract a small subset of data from a larger data set (or longer time series) for subsequent processing.
New GH structure.
Jonathan M. Lees<jonathan.lees@unc.edu>
swig
if(interactive()){
data(GH)
swig(GH, sel=which(GH$COMPS=="V" ))
jh = WINGH(GH, sel = which(GH$COMPS=="V" ), WIN = c(3.821281, 12.861820) )
swig(jh)
## compare with:
swig(GH, sel=which(GH$COMPS=="V" ), WIN = c(3.821281, 12.861820))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.