gistools/space/planets/mercury.rs
1/// Mercury's radius in meters
2pub const MERCURY_RADIUS: f64 = 2_439_700.0;
3/// Mercury's equitorial radius in meters
4pub const MERCURY_RADIUS_EQUATORIAL: f64 = 2_440_500.0;
5/// Mercury's polar radius in meters
6pub const MERCURY_RADIUS_POLAR: f64 = 2_438_300.0;
7/// The average circumference of Jupiter in meters.
8pub const MERCURY_CIRCUMFERENCE: f64 = 2.0 * core::f64::consts::PI * MERCURY_RADIUS;
9/// The altitude of the highest known point on Mercury in meters.
10/// <https://www.usgs.gov/news/national-news-release/first-global-topographic-map-mercury-released>
11pub const MERCURY_HIGHEST_ALTITUDE: f64 = 4_480.0;
12/// The altitude of the lowest known point on Mercury in meters.
13/// <https://www.usgs.gov/news/national-news-release/first-global-topographic-map-mercury-released>
14pub const MERCURY_LOWEST_ALTITUDE: f64 = -5_380.0;