import { Hemisphere } from '@ngageoint/grid-js'; /** * Latitude (horizontal) band */ export declare class LatitudeBand { /** * Band letter */ private letter; /** * Southern latitude */ private south; /** * Northern latitude */ private north; /** * Hemisphere */ private hemisphere; /** * Constructor * * @param letter * band letter * @param south * southern latitude * @param north * northern latitude */ constructor(letter: string, south: number, north: number); /** * Get the band letter * * @return band letter */ getLetter(): string; /** * Set the band letter * * @param letter * band letter */ setLetter(letter: string): void; /** * Get the southern latitude * * @return southern latitude */ getSouth(): number; /** * Set the southern latitude * * @param south * southern latitude */ setSouth(south: number): void; /** * Get the northern latitude * * @return northern latitude */ getNorth(): number; /** * Set the northern latitude * * @param north * northern latitude */ setNorth(north: number): void; /** * Get the hemisphere * * @return hemisphere */ getHemisphere(): Hemisphere; } //# sourceMappingURL=LatitudeBand.d.ts.map