StereoPoint {RockFab} | R Documentation |
Add line data to stereonet.
Description
Adds point to stereonet based on the trend and plunge of linear data.
Usage
StereoPoint(my.az = 90, my.inc = 45,
my.color = "black", my.pch = 19,
my.size = 0.25, my.label)
Arguments
my.az |
Lineation trend as an azimuth. |
my.inc |
Lineation plunge or inclination. |
my.color |
Point color. |
my.pch |
pch value. See ?par |
my.size |
Size of points. Calls cex(my.size). See ?par |
my.label |
Label to add next to point |
Value
Adds point to stereonet based on the trend and plunge of linear data.
Author(s)
Jeffrey R. Webber
References
Modified from the package RFOC by Jonathan M. Lees.
See Also
StereoPlot
, StereoWeb
, StereoPlane
, StereoCirc
Examples
#Plot random plane and lineation
strike <- runif(min = 0, max = 360, n = 1)
dip <- runif(min = 0, max = 90, n = 1)
trend <- runif(min = 0, max = 360, n = 1)
plunge <- runif(min = 0, max = 90, n = 1)
if(interactive()){
StereoPlot(my.title = "Example Stereonet")
StereoWeb()
StereoCirc()
StereoPoint(my.az = trend, my.inc = plunge)
StereoPlane(my.strike = strike, my.dip = dip)
}
[Package RockFab version 1.2.1 Index]