//#region src/coordinates/latlon/internal/ordinal.d.ts /** * Gets the ordinal direction (N/S/E/W) for a coordinate value. * * @param num - The coordinate value (positive or negative). * @param isLatitude - Whether this is a latitude coordinate (true) or longitude (false). * @returns Ordinal direction character: 'N', 'S', 'E', or 'W'. * * @example * ```typescript * getOrdinal(37.7749, true); * // 'N' * ``` * * @example * ```typescript * getOrdinal(-122.4194, false); * // 'W' * ``` * * @example * ```typescript * getOrdinal(-45, true); * // 'S' * ``` */ declare const getOrdinal: (num: number, isLatitude: boolean) => string; //#endregion export { getOrdinal }; //# sourceMappingURL=ordinal.d.ts.map