@observerly/astrometry
Version:
observerly's lightweight, zero-dependency, type safe astrometry library written in Typescript for calculating the position of celestial objects in the sky.
25 lines (24 loc) • 1.17 kB
TypeScript
/*****************************************************************************************************************/
/*****************************************************************************************************************/
export interface NancyRomanRecord {
ral: number;
rau: number;
decl: number;
name: string;
}
/*****************************************************************************************************************/
export declare const isNancyRomanRecord: (record: unknown) => record is NancyRomanRecord;
/*****************************************************************************************************************/
/**
*
* @description Constellation Boundary Lookup Table
* @see https://iopscience.iop.org/article/10.1086/132034/pdf
*
* A table permits rapid determination of the constellation in which an object is
* located from its J1875.0 position.
*
* @citation Nancy G. Roman 1987 The Astronomical Society of the Pacific 99 695
*
*/
export declare const NANCY_ROMAN_TABLE_I: NancyRomanRecord[];
/*****************************************************************************************************************/