clusterWPX | R Documentation |
Given a pick file in WPX format, break the picks apart clustered accoring to single link cluster analysis.
clusterWPX(twpx, tol = 200, PLOT = FALSE)
twpx |
WPX list |
tol |
tolerance in seconds - all pick distances less than tol will be set to zero to force these to be associated. |
PLOT |
logical, if TRUE, add verbose plotting |
If there is not significant separation of picks, only one cluster is returned. To avoid spurious clusters, increase the tolerance.
list of WPX lists
Cluster depends on what one considers a cluster.
Jonathan M. Lees<jonathan.lees@unc.edu>
RSEIS::addWPX, RSEIS::catWPX, RSEIS::checkWPX,RSEIS::cleanWPX, PCsaveWPX, RSEIS::setWPX, RSEIS::repairWPX
s1 = RSEIS::setWPX(name="HI", yr=2011, jd=231, hr=4, mi=3, sec = runif(5))
s2 = RSEIS::setWPX(name="HI", yr=2011, jd=231, hr=5, mi=2, sec = runif(5))
s3 = RSEIS::catWPX(s1,s2)
twpx = data.frame(s3)
L3 = clusterWPX(twpx)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.