/** @packageDocumentation * @module OrbitGT */ declare type int32 = number; /** * Class Axis defines the parameters of a coordinate axis. * * Based on the following document: * * Coordinate Conversions and Transformations including Formulas * Guidance Note Number 7, part 2 * Revised May 2005 * Available at: http://www.epsg.org/ * * @version 1.0 July 2008 */ /** @internal */ export declare class Axis { /** The code */ private _code; /** The axis name */ private _axisName; /** The axis orientation */ private _axisOrientation; /** The abbreviation */ private _abbreviation; /** The unit-of-measurement code */ private _unitCode; /** The axis order */ private _order; /** * Create a new axis. * @param code the code. * @param axisName the name of the axis. * @param axisOrientation the orientation of the axis. * @param abbreviation the abbreviation. * @param unitCode the unit-of-measurement code. * @param order the axis order. */ constructor(code: int32, axisName: string, axisOrientation: string, abbreviation: string, unitCode: int32, order: int32); /** * Get the code. * @return the code. */ getCode(): int32; /** * Get the axis name. * @return the axis name. */ getAxisName(): string; /** * Get the axis orientation. * @return the axis orientation. */ getAxisOrientation(): string; /** * Get the abbreviation. * @return the abbreviation. */ getAbbreviation(): string; /** * Get the unit-of-measurement code. * @return the unit-of-measurement code. */ getUnitCode(): int32; /** * Get the axis order. * @return the axis order. */ getOrder(): int32; /** * The standard toString method. * @see Object#toString */ toString(): string; } export {}; //# sourceMappingURL=Axis.d.ts.map