venus | R Documentation |
Craters on Venus from the USGS Astrogeology Science Center.
venus
A data frame with 967 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
venus.R
.
https://astrogeology.usgs.gov/search/map/Venus/venuscraters
# Load data
data("venus")
# Add Cartesian coordinates
venus$X <- cbind(cos(venus$theta) * cos(venus$phi),
sin(venus$theta) * cos(venus$phi),
sin(venus$phi))
# Tests
unif_test(data = venus$X, 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.