s2-tools
Version:
A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
20 lines • 808 B
JavaScript
// NOTE: Pluto is a planet. All else if fake news.
/** Pluto's radius in meters */
export const PLUTO_RADIUS = 1_188_000;
/** Pluto's equitorial radius in meters */
export const PLUTO_RADIUS_EQUATORIAL = 1_188_000;
/** Pluto's polar radius in meters */
export const PLUTO_RADIUS_POLAR = 1_188_000;
/** The average circumference of Pluto in meters. */
export const PLUTO_CIRCUMFERENCE = 7_464_424.1449293485; // 2.0 * Math.PI * PLUTO_RADIUS;
/**
* The altitude of the highest known point on Pluto in meters.
* https://en.wikipedia.org/wiki/Tenzing_Montes
*/
export const PLUTO_HIGHEST_ALTITUDE = 6_200.0;
/**
* The altitude of the lowest known point on Pluto in meters.
* https://www.lpi.usra.edu/features/070918/pluto/
*/
export const PLUTO_LOWEST_ALTITUDE = -3_500.0;
//# sourceMappingURL=pluto.js.map