/** @packageDocumentation * @module OrbitGT */ declare type int32 = number; import { Coordinate } from "../../geom/Coordinate"; import { CRS } from "../CRS"; import { Operation } from "../Operation"; import { OperationMethod } from "../OperationMethod"; import { ParameterValueList } from "../ParameterValueList"; /** * Class KrovakObliqueConformalConicEN defines the "East-North" variant of the Krovak Oblique Conformal Conic projection. * * In the standard projection X runs from north to south and Y runs from east to west. * This seems awkward to most users. They prefer X from west to east and Y from south to north. * Therefore an alternative is provided in which both axes are inversed and swapped. * This leads to a more traditional map. * * @version 1.0 October 2009 */ /** @internal */ export declare class KrovakObliqueConformalConicEN extends OperationMethod { /** The code of this method */ static readonly METHOD_CODE: int32; /** The original projection */ private projection; /** * Create a new projection. * @param parameters the values of the parameters. */ constructor(parameters: ParameterValueList); /** * OperationMethod method. * @see OperationMethod#initialize */ initialize(operation: Operation): void; /** * OperationMethod interface method. * @see OperationMethod#forward */ forward(sourceCRS: CRS, source: Coordinate, targetCRS: CRS, target: Coordinate): void; /** * OperationMethod interface method. * @see OperationMethod#reverse */ reverse(sourceCRS: CRS, source: Coordinate, targetCRS: CRS, target: Coordinate): void; } export {}; //# sourceMappingURL=KrovakObliqueConformalConicEN.d.ts.map