Learn R Programming

RSEIS (version 4.2-4)

seisorder: Order seismic traces

Description

Use RSEIS structure to get convenient ordering of seismic data

Usage

seisorder(GH, ORD, VNE = c("V", "N", "E"))

Value

Vector of indeces of GH in correct order

Arguments

GH

RSEIS list

ORD

predetermined ordering, list(name, dist)

VNE

Order, for components, default=c("V", "N", "E")

Author

Jonathan M. Lees<jonathan.lees@unc.edu>

Details

Uses information aboutthe location of the stations to determine appropriate order. Order can be determined from the location of the stations, or from the travel times.

See Also

JGET.seis

Examples

Run this code

data(GH)
staf <- GH$stafile

################   get the distances from the source to the stations
d1  <- GreatDist(GH$pickfile$LOC$lon, GH$pickfile$LOC$lat,
              staf$lon, staf$lat)

###  staf has the names of the stations already, so insert the order via
###                       dist
staf$dist <- d1$dkm

sorder <- seisorder(GH, staf, VNE= c("V", "N", "E"))

if(interactive()){
swig(GH, sel=sorder)
}

Run the code above in your browser using DataLab