seisorder(RSEIS)
seisorder()所属R语言包:RSEIS
Order seismic traces
地震的痕迹;
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Use RSEIS structure to get convenient ordering of seismic data
使用RSEIS结构,方便的订购地震数据
用法----------Usage----------
seisorder(GH, ORD, VNE = c("V", "N", "E"))
参数----------Arguments----------
参数:GH
RSEIS list
RSEIS列表
参数:ORD
predetermined ordering, list(name, dist)
预定的顺序,列表(姓名,区)
参数:VNE
Order, for components, default=c("V", "N", "E")
令,组件,默认值= C(“V”,“N”,“E”)
Details
详细信息----------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.
使用信息攻方站的位置,以确定适当的顺序。顺序可以从站的位置,或从旅行时间确定。
值----------Value----------
Vector of indeces of GH in correct order
以正确的顺序选取的,GH向量的
注意----------Note----------
If ORD is provided from travel times, it uses this instead
如果ORD提供的旅行时间,它会使用这个,而不是
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees@unc.edu>
参见----------See Also----------
JGET.seis
JGET.seis
实例----------Examples----------
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[##STAF的站名,所以插入的顺序通过]
### dist[##区]
staf$dist=d1$dkm
sorder = seisorder(GH, staf, VNE= c("V", "N", "E"))
## Not run: [#不运行:]
swig(GH, sel=sorder)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|