prepSEIS {RSEIS} | R Documentation |
Takes list of traces and prepares new list for analysis in RSEIS
prepSEIS(GG)
GG |
Output list of Rsac function GET.seis |
prepSEIS is offered to reformat the output of a list of seismic traces (or other time series) for inpout to program PICK.GEN()
RSEIS list
Jonathan M. Lees<jonathan.lees.edu>
PICK.GEN, GET.seis
data(sunspots) ES = prep1wig(wig=sunspots, dt=1/12, sta="STA", comp="CMP", units="UNITS" ) EH=prepSEIS(ES) STDLAB = c("DONE", "zoom out", "refresh", "restore", "XTR", "SPEC", "SGRAM" ,"WLET") xx = PICK.GEN( EH, STDLAB = STDLAB) ## Not run: ###### this example shows how to read data from SEGY files using Rsac ##### and entering RSEIS KG4 = JGET.seis(c(fnames), kind = 1, PLOT = FALSE) KH=prepSEIS(KG4) STDLAB = c("DONE", "zoom out", "refresh", "restore", "XTR", "SPEC", "SGRAM" ,"WLET") xx = PICK.GEN( KH, sel=which(KH$COMPS == "V"), STDLAB = STDLAB) ## End(Not run)