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)
### for data created on UNIX (SUN) but read on linux:
S1 = JGET.seis(Lname, kind = 1, Iendian="swap", BIGLONG=FALSE, PLOT = FALSE)
### for data created on linux (32 bit) but read on linux 64 bit:
S1 = JGET.seis(Lname, kind = 1, Iendian="little", BIGLONG=FALSE, PLOT = FALSE)
### for SEGY data created on linux (64 bit) but read on linux 32 bit:
S1 = JGET.seis(Lname, kind = 1, Iendian="little", BIGLONG=TRUE, PLOT = FALSE)
### for SAC data created on MAC-OS (64 bit) but read on linux 32 bit:
S1 = JGET.seis(Lname, kind = 2, Iendian="swap", BIGLONG=TRUE, PLOT = FALSE)
##################
########## to use other parts of the seismic
############ analysis package convert to rseis format:
#### prepare the data for further processing:
S1 = JGET.seis(Lname, kind = 2, Iendian="swap", BIGLONG=TRUE, PLOT = FALSE)
GH=prepSEIS(S1)
#### plot the data, and interact with the data
swig(GH)
### or simply:
plotJGET(S1)
Run the code above in your browser using DataLab