@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.
15 lines (14 loc) • 749 B
TypeScript
/*****************************************************************************************************************/
/*****************************************************************************************************************/
import type { EquatorialCoordinate } from './common';
/*****************************************************************************************************************/
/**
*
* getEclipticPlane()
*
* @param date - The date to calculate the ecliptic plane for.
* @returns The ecliptic plane at the given date.
*
*/
export declare const getEclipticPlane: (date: Date) => EquatorialCoordinate[];
/*****************************************************************************************************************/