gistools/space/planets/
venus.rs

1/// Venus' radius in meters
2pub const VENUS_RADIUS: f64 = 6_051_800.0;
3/// Venus' equitorial radius in meters
4pub const VENUS_RADIUS_EQUATORIAL: f64 = 6_051_800.0;
5/// Venus' polar radius in meters
6pub const VENUS_RADIUS_POLAR: f64 = 6_051_800.0;
7/// The average circumference of Venus in meters.
8pub const VENUS_CIRCUMFERENCE: f64 = 2.0 * core::f64::consts::PI * VENUS_RADIUS; // 38_024_580.84198942; // 2.0 * Math.PI * VENUS_RADIUS;
9/// The altitude of the highest known point on Venus in meters.
10/// <https://en.wikipedia.org/wiki/Maxwell_Montes>
11pub const VENUS_HIGHEST_ALTITUDE: f64 = 11_000.0;
12/// The altitude of the lowest known point on Venus in meters.
13/// <https://en.wikipedia.org/wiki/List_of_Solar_System_extremes>
14pub const VENUS_LOWEST_ALTITUDE: f64 = -3_000.0;