s2maps-gpu
Version:
S2 Maps GPU - An open source, high-performance, and GPU-accelerated map engine for rendering large-scale, interactive maps.
20 lines (19 loc) • 775 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;