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) 733 B
/** 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;