]> git.mxchange.org Git - simgear.git/blob - simgear/ephemeris/ephemeris.hxx
adae3023c19c111aba1d93634417c1e0b6e04e75
[simgear.git] / simgear / ephemeris / ephemeris.hxx
1 // ephemeris.hxx -- Top level class for calculating current positions of
2 //                  astronomical objects
3 //
4 // Written by Curtis Olson, started March 2000.
5 //
6 // Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23
24
25 #ifndef _EPHEMERIS_HXX
26 #define _EPHEMERIS_HXX
27
28
29 #include <Time/fg_time.hxx>
30
31 #include "star.hxx"
32
33
34 class FGEphemeris {
35
36     Star our_sun;
37
38 public:
39
40     // Constructor
41     FGEphemeris( void );
42
43     // Destructor
44     ~FGEphemeris( void );
45
46     // Update (recalculate) the positions of all objects for the
47     // specified time
48     void update(FGTime *t);
49
50     // sun position
51     inline double getSunRightAscension() {
52         return our_sun.getRightAscension();
53     }
54     inline double getSunDeclination() {
55         return our_sun.getDeclination();
56     }
57
58 };
59
60
61 #endif // _EPHEMERIS_HXX
62
63