craters | R Documentation |
Named craters of the Solar System by the Gazetteer of Planetary Nomenclature of the International Astronomical Union (IUA).
craters
A data frame with 5235 rows and 7 variables:
database ID.
name of the crater.
name of the celestial body. A factor with 43 levels,
such as "Moon"
, "Venus"
, or "Europa"
.
type of celestial body. A factor with 3 levels:
"Planet"
, "Moon"
, "Dwarf planet"
, or
"Asteroid"
.
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.
"Craters" are understood in the Gazetteer of Planetary Nomenclature as roughly circular depressions resulting from impact or volcanic activity (the geological origin is unspecified).
Be aware that the dataset only contains named craters by the IUA.
Therefore, there is likely a high uniform bias on the distribution
of craters. Presumably the naming process attempts to cover the planet in
a somehow uniform fashion (distant craters are more likely to be named than
neighboring craters). Also, there are substantially more craters in the
listed bodies than those named by the IUA. See venus
and
rhea
for more detailed and specific crater datasets.
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
craters.R
. The data was retrieved on 2020-05-31.
https://planetarynames.wr.usgs.gov/AdvancedSearch
# Load data
data("craters")
# Add Cartesian coordinates
craters$X <- cbind(cos(craters$theta) * cos(craters$phi),
sin(craters$theta) * cos(craters$phi),
sin(craters$phi))
# Tests to be performed
type_tests <- c("PCvM", "PAD", "PRt")
# Tests for Venus and Rhea
unif_test(data = craters$X[craters$target == "Venus", ], type = type_tests,
p_value = "asymp")
unif_test(data = craters$X[craters$target == "Rhea", ], type = type_tests,
p_value = "asymp")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.