Learn R Programming

RSEIS (version 2.1-6)

seisorder: Order seismic traces

Description

Use RSEIS structure to get convenient ordering of seismic data

Usage

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

Arguments

GH
RSEIS list
ORD
predetermined ordering, list(name, dist)
VNE
Order, for components, default=c("V", "N", "E")

Value

  • Vector of indeces of GH in correct order

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"))

PICK.GEN(GH, sel=sorder)

Run the code above in your browser using DataLab