rhea | R Documentation |
Craters on Rhea from Hirata (2016).
rhea
A data frame with 3596 rows and 4 variables:
name of the crater (if named).
diameter of the crater (in km).
longitude angle \theta \in [0, 2\pi)
of the
crater center.
latitude angle \phi \in [-\pi/2, \pi/2]
of the
crater center.
The (\theta, \phi)
angles are such their associated planetocentric
coordinates are:
(\cos(\phi) \cos(\theta), \cos(\phi) \sin(\theta), \sin(\phi))',
with (0, 0, 1)'
denoting the north pole.
The script performing the data preprocessing is available at
rhea.R
.
Hirata, N. (2016) Differential impact cratering of Saturn's satellites by heliocentric impactors. Journal of Geophysical Research: Planets, 121:111–117. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1002/2015JE004940")}
# Load data
data("rhea")
# Add Cartesian coordinates
rhea$X <- cbind(cos(rhea$theta) * cos(rhea$phi),
sin(rhea$theta) * cos(rhea$phi),
sin(rhea$phi))
# Tests
unif_test(data = rhea$X[rhea$diam > 15 & rhea$diam < 20, ],
type = c("PCvM", "PAD", "PRt"), p_value = "asymp")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.