if (FALSE) {
Lname <- list.files(path='/data/wadati/bourbon/LaurelCanNC/R005.01' ,
pattern="08.005.01.41.23.9024", full.names=TRUE)
S1 <- GET.seis(Lname, kind = 1, PLOT = -1)
### for data created on UNIX (SUN) but read on linux:
S1 <- GET.seis(Lname, kind = 1, Iendian="swap", BIGLONG=FALSE, PLOT = -1)
### for data created on linux (32 bit) but read on linux 64 bit:
S1 <- GET.seis(Lname, kind = 1, Iendian="little", BIGLONG=FALSE, PLOT = -1)
### for SEGY data created on linux (64 bit) but read on linux 32 bit:
S1 <- GET.seis(Lname, kind = 1, Iendian="little", BIGLONG=TRUE, PLOT = -1)
### for SAC data created on MAC-OS (64 bit) but read on linux 32 bit:
S1 <- GET.seis(Lname, kind = 2, Iendian="swap", BIGLONG=TRUE, PLOT = -1)
##################
########## 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 = -1)
GH <- prepSEIS(S1)
#### plot the data, and interact with the data
swig(GH, SHOWONLY=0)
### or simply:
plotJGET(S1)
}
Run the code above in your browser using DataLab