projected_pb_strike | R Documentation |
The fault's strike in the PoR CRS projected on the data point along the predicted stress trajectories.
projected_pb_strike(x, PoR, pb, tangential = FALSE, ...)
x , pb |
|
PoR |
Pole of rotation. |
tangential |
Logical. Whether the plate boundary is a tangential
boundary ( |
... |
optional arguments passed to |
Useful to calculate the beta angle, i.e. the angle between SHmax direction (in PoR CRS!) and the fault's strike (in PoR CRS). The beta angle is the same in geographical and PoR coordinates.
Numeric vector of the strike direction of the plate boundary (in degree)
The algorithm calculates the great circle bearing between line vertices. Since transform plate boundaries represent small circle lines in the PoR system, this great-circle azimuth is only a approximation of the true (small-circle) azimuth.
data("nuvel1")
na_pa <- subset(nuvel1, nuvel1$plate.rot == "na")
data("plates")
plate_boundary <- subset(plates, plates$pair == "na-pa")
data("san_andreas")
res <- projected_pb_strike(
x = san_andreas, PoR = na_pa, pb = plate_boundary, tangential = TRUE
)
head(res)
head(san_andreas$azi - res) # beta angle
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.