/* Copyright (C) 2000 Liam Girdwood Copyright (C) 2003 Fabien Chereau Copyright (C) 2010 Georg Zotti (parts) This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _STELLASTRO_H #define _STELLASTRO_H #ifdef __cplusplus extern "C" { #endif /* Calculate mean sidereal time from date. */ double get_mean_sidereal_time (double JD); /* Calculate apparent sidereal time from date.*/ double get_apparent_sidereal_time (double JD); /* Calculate mean ecliptical obliquity in degrees. */ double get_mean_ecliptical_obliquity(double JDE); /* Calculate nutation in longitude in degrees. */ double get_nutation_longitude(double JDE); #ifdef __cplusplus } #endif #endif /* _STELLASTRO_H */