gistools/space/planets/mars.rs
1/// Mars' radius in meters
2pub const MARS_RADIUS: f64 = 3_389_500.0;
3/// Mars' equitorial radius in meters
4pub const MARS_RADIUS_EQUATORIAL: f64 = 3_396_200.0;
5/// Mars' polar radius in meters
6pub const MARS_RADIUS_POLAR: f64 = 3_376_200.0;
7/// The average circumference of Mars in meters.
8pub const MARS_CIRCUMFERENCE: f64 = 2.0 * core::f64::consts::PI * MARS_RADIUS;
9/// The altitude of the highest known point on Mars in meters.
10/// <https://geology.com/articles/highest-point-on-mars.shtml>
11pub const MARS_HIGHEST_ALTITUDE: f64 = 21_229.0;
12/// The altitude of the lowest known point on Mars in meters.
13/// <https://en.wikipedia.org/wiki/Hellas_Planitia>
14pub const MARS_LOWEST_ALTITUDE: f64 = -7_152.0;