/** * Geometry Constants * * @author osbornb * @since 1.1.1 */ export declare class GeometryConstants { /** * Default epsilon for point in or on line tolerance */ static readonly DEFAULT_LINE_EPSILON = 1e-15; /** * Default epsilon for point equality */ static readonly DEFAULT_EQUAL_EPSILON = 1e-8; /** * Web Mercator Latitude Range */ static readonly WEB_MERCATOR_MAX_LAT_RANGE = 85.0511287798066; /** * Web Mercator Latitude Range */ static readonly WEB_MERCATOR_MIN_LAT_RANGE = -85.05112877980659; /** * Half the world distance in either direction */ static readonly WEB_MERCATOR_HALF_WORLD_WIDTH = 20037508.342789244; /** * Half the world longitude width for WGS84 */ static readonly WGS84_HALF_WORLD_LON_WIDTH = 180; /** * Half the world latitude height for WGS84 */ static readonly WGS84_HALF_WORLD_LAT_HEIGHT = 90; /** * Minimum latitude degrees value convertible to meters */ static readonly DEGREES_TO_METERS_MIN_LAT = -89.99999999999999; /** * Absolute north bearing in degrees */ static readonly BEARING_NORTH = 0; /** * Absolute east bearing in degrees */ static readonly BEARING_EAST = 90; /** * Absolute south bearing in degrees */ static readonly BEARING_SOUTH = 180; /** * Absolute west bearing degrees */ static readonly BEARING_WEST = 270; /** * Radians to Degrees conversion */ static readonly RADIANS_TO_DEGREES: number; /** * Degrees to Radians conversion */ static readonly DEGREES_TO_RADIANS: number; }