DO.PMOT.ARR: Particle Motion Analysis with arrows

DO.PMOT.ARRR Documentation

Particle Motion Analysis with arrows

Description

Plot particle motion arrows

Usage

DO.PMOT.ARR(E, N)

Arguments

E

East component

N

East Component

Value

Graphical Side Effects

Author(s)

Jonathan M. Lees<jonathan.lees.edu>

See Also

PMOT.drive

Examples


data(GH)
XLIM = c(1226, 1322 )

e = GH$JSTR[[1]][XLIM[1]:XLIM[2]]
n = GH$JSTR[[2]][XLIM[1]:XLIM[2]]


   xx = range(e, na.rm =TRUE)
    yy = range(n, na.rm =TRUE)
 sx = range(c(xx, yy))

   x  = RPMG::RESCALE(e, 0, 1, sx[1], sx[2])
    y  = RPMG::RESCALE(n, 0, 1, sx[1], sx[2])



plot(range(x), range(y) , type='n')
lines(x, y, col=grey(0.8) )
DO.PMOT.ARR(x, y)



RSEIS documentation built on Sept. 13, 2024, 1:09 a.m.