Learn R Programming

GEOmap (version 2.1)

eqswath: Extract a set of eathquakes in swath along a cross sectional line

Description

Extract a set of eathquakes in swath along a cross sectional line

Usage

eqswath(x, y, z, L, width = 1, PROJ = NULL)

Arguments

x
x-coordinates of earthquakes
y
y-coordinates of earthquakes
z
z-coordinates of earthquakes
L
list of x-y coordinates of cross section
width
width of swath (km)
PROJ
projection information

Value

  • rr-distance along cross section (x-coordinate)
  • dhdistance from cross seection
  • depthdepth in cross section (y-coordinate)
  • flagindex vector of which earthquakes fell in swath and depth range
  • InvBoxcoordinates of swath for plotting on map

Details

All units should be the same.

See Also

XSECwin, XSECEQ

Examples

Run this code
#############  create data
x = runif(100, 1, 100)  
y = runif(100, 1, 100) 
z = runif(100, 1, 10) 
plot(x,y, asp=1)
## L = locator()

L=list()
L$x=c( 5.42328560757,64.62879777806)
L$y=c(89.843266449785,-0.174423911329)

J = eqswath(x, y, z, L, width = 10, PROJ = NULL)

##########   show box:
plot(x,y, asp=1)
lines(J$InvBox$x, J$InvBox$y)


############  show cross section with events plotted
plot(J$r, -J$depth)

Run the code above in your browser using DataLab