varsquiggle {RSEIS} | R Documentation |
Plot A seismic section using Var-Squiggle, like an exploration seismic record.
varsquiggle(GH, sel = c(1, 2), WIN = c(0, 1))
GH |
Seismic List |
sel |
selection of seismic traces |
WIN |
time window |
Traces are plotted and scaled each with its own window.
Graphical Side effects
Jonathan M. Lees<jonathan.lees@unc.edu>
varsquig
data(GH) m = match( GH$STNS, GH$stafile$name) LATS = GH$stafile$lat[m] LONS = GH$stafile$lon[m] dees = distaz( GH$pickfile$LOC$lat, GH$pickfile$LOC$lon, LATS, LONS) sel = which(GH$COMPS=="V") sel = sel[order(dees$dist[sel])] ### plot normal way: PICK.GEN(GH, sel=sel, WIN=c(5,10), SHOWONLY=TRUE) ### plot with varsquiggle varsquiggle(GH, sel=sel, WIN=c(5,10))