/** * Military Grid Reference System Constants */ export declare class MGRSConstants { /** * Minimum longitude */ static readonly MIN_LON = -180; /** * Maximum longitude */ static readonly MAX_LON = 180; /** * Minimum latitude */ static readonly MIN_LAT = -80; /** * Maximum latitude */ static readonly MAX_LAT = 84; /** * Minimum grid zone number */ static readonly MIN_ZONE_NUMBER = 1; /** * Maximum grid zone number */ static readonly MAX_ZONE_NUMBER = 60; /** * Grid zone width */ static readonly ZONE_WIDTH = 6; /** * Minimum grid band letter */ static readonly MIN_BAND_LETTER = "C"; /** * Maximum grid band letter */ static readonly MAX_BAND_LETTER = "X"; /** * Number of bands */ static readonly NUM_BANDS = 20; /** * Grid band height for all by but the {@link #MAX_BAND_LETTER} */ static readonly BAND_HEIGHT = 8; /** * Grid band height for the {@link #MAX_BAND_LETTER} */ static readonly MAX_BAND_HEIGHT = 12; /** * Last southern hemisphere band letter */ static readonly BAND_LETTER_SOUTH = "M"; /** * First northern hemisphere band letter */ static readonly BAND_LETTER_NORTH = "N"; /** * Min zone number in Svalbard grid zones */ static readonly MIN_SVALBARD_ZONE_NUMBER = 31; /** * Max zone number in Svalbard grid zones */ static readonly MAX_SVALBARD_ZONE_NUMBER = 37; /** * Band letter in Svalbard grid zones */ static readonly SVALBARD_BAND_LETTER = "X"; /** * Min zone number in Norway grid zones */ static readonly MIN_NORWAY_ZONE_NUMBER = 31; /** * Max zone number in Norway grid zones */ static readonly MAX_NORWAY_ZONE_NUMBER = 32; /** * Band letter in Norway grid zones */ static readonly NORWAY_BAND_LETTER = "V"; } //# sourceMappingURL=MGRSConstants.d.ts.map