gistools/space/planets/
pluto.rs

1// NOTE: Pluto is a planet. All else if fake news.
2
3/// Pluto's radius in meters
4pub const PLUTO_RADIUS: f64 = 1_188_000.0;
5/// Pluto's equitorial radius in meters
6pub const PLUTO_RADIUS_EQUATORIAL: f64 = 1_188_000.0;
7/// Pluto's polar radius in meters
8pub const PLUTO_RADIUS_POLAR: f64 = 1_188_000.0;
9/// The average circumference of Pluto in meters.
10pub const PLUTO_CIRCUMFERENCE: f64 = 2.0 * core::f64::consts::PI * PLUTO_RADIUS; // 7_464_424.1449293485; // 2.0 * Math.PI * PLUTO_RADIUS;
11/// The altitude of the highest known point on Pluto in meters.
12/// <https://en.wikipedia.org/wiki/Tenzing_Montes>
13pub const PLUTO_HIGHEST_ALTITUDE: f64 = 6_200.0;
14/// The altitude of the lowest known point on Pluto in meters.
15/// <https://www.lpi.usra.edu/features/070918/pluto/>
16pub const PLUTO_LOWEST_ALTITUDE: f64 = -3_500.0;