s2-tools
Version:
A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
19 lines • 766 B
JavaScript
/** Venus' radius in meters */
export const VENUS_RADIUS = 6_051_800;
/** Venus' equitorial radius in meters */
export const VENUS_RADIUS_EQUATORIAL = 6_051_800;
/** Venus' polar radius in meters */
export const VENUS_RADIUS_POLAR = 6_051_800;
/** The average circumference of Venus in meters. */
export const VENUS_CIRCUMFERENCE = 38_024_580.84198942; // 2.0 * Math.PI * VENUS_RADIUS;
/**
* The altitude of the highest known point on Venus in meters.
* https://en.wikipedia.org/wiki/Maxwell_Montes
*/
export const VENUS_HIGHEST_ALTITUDE = 11_000.0;
/**
* The altitude of the lowest known point on Venus in meters.
* https://en.wikipedia.org/wiki/List_of_Solar_System_extremes
*/
export const VENUS_LOWEST_ALTITUDE = -3_000.0;
//# sourceMappingURL=venus.js.map