UNPKG

s2-tools

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

19 lines 880 B
/** Mercury's radius in meters */ export const MERCURY_RADIUS = 2_439_700; /** Mercury's equitorial radius in meters */ export const MERCURY_RADIUS_EQUATORIAL = 2_440_500; /** Mercury's polar radius in meters */ export const MERCURY_RADIUS_POLAR = 2_438_300; /** The average circumference of Jupiter in meters. */ export const MERCURY_CIRCUMFERENCE = 15_329_087.193926036; // 2.0 * Math.PI * MERCURY_RADIUS; /** * The altitude of the highest known point on Mercury in meters. * https://www.usgs.gov/news/national-news-release/first-global-topographic-map-mercury-released */ export const MERCURY_HIGHEST_ALTITUDE = 4_480.0; /** * The altitude of the lowest known point on Mercury in meters. * https://www.usgs.gov/news/national-news-release/first-global-topographic-map-mercury-released */ export const MERCURY_LOWEST_ALTITUDE = -5_380.0; //# sourceMappingURL=mercury.js.map