JGET.seis {RSEIS} | R Documentation |
This fuction calls c-routines to read in ‘segy’, ‘sac’.
JGET.seis(fnames, kind = 1, PLOT = FALSE) getseisinfo(fnames, kind = 1)
fnames |
list of file names. |
kind |
an integer {1, 2, 3}; 1 = segy, 2 = sac, 3 = AH. |
PLOT |
logical, for if the traces should be plotted. |
a list containing the seismic data and header information. Each trace consists of a list with:
fn |
original file name |
sta |
station name |
comp |
compnent |
dt |
delta t in seconds |
DATTIM |
time list |
yr |
year |
jd |
julian day |
mo |
month |
dom |
day of month |
hr |
hour |
mi |
minute |
sec |
sec |
msec |
milliseconds |
dt |
delta t in seconds |
t1 |
time start of trace |
t2 |
time end of trace |
off |
off-set |
N |
number of points in trace |
units |
units |
amp |
vector of trace values |
getseisinfo gets only the header information from the trace.
Jonathan M. Lees <jonathan.lees@unc.edu>
Package:Rsac
## Not run: Lname = list.files(path='/data/wadati/bourbon/LaurelCanNC/R005.01' , pattern="08.005.01.41.23.9024", full.names=TRUE) S1 = JGET.seis(Lname, kind = 1, PLOT = FALSE) ## End(Not run)