UNPKG

s2maps-gpu

Version:

S2 Maps GPU - An open source, high-performance, and GPU-accelerated map engine for rendering large-scale, interactive maps.

19 lines (18 loc) 845 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;