gistools/space/planets/neptune.rs
1/// Neptune's radius in meters
2pub const NEPTUNE_RADIUS: f64 = 24_622_000.0;
3/// Neptune's equitorial radius in meters
4pub const NEPTUNE_RADIUS_EQUATORIAL: f64 = 24_764_000.0;
5/// Neptune's polar radius in meters
6pub const NEPTUNE_RADIUS_POLAR: f64 = 24_341_000.0;
7/// The average circumference of Neptune in meters.
8pub const NEPTUNE_CIRCUMFERENCE: f64 = 2.0 * core::f64::consts::PI * NEPTUNE_RADIUS; // 154_704_588.63337576; // 2.0 * Math.PI * NEPTUNE_RADIUS;