Stellarium 0.12.4
stellplanet.h
1 /*
2 Copyright (C) 2003 Fabien Chereau
3 
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8 
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13 
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
17 */
18 
19 #ifndef _STELLPLANET_H_
20 #define _STELLPLANET_H_
21 
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25 
26 void get_sun_helio_coordsv(double jd,double xyz[3], void*);
27 void get_mercury_helio_coordsv(double jd,double xyz[3], void*);
28 void get_venus_helio_coordsv(double jd,double xyz[3], void*);
29 void get_earth_helio_coordsv(double jd,double xyz[3], void*);
30 void get_mars_helio_coordsv(double jd,double xyz[3], void*);
31 void get_jupiter_helio_coordsv(double jd,double xyz[3], void*);
32 void get_saturn_helio_coordsv(double jd,double xyz[3], void*);
33 void get_uranus_helio_coordsv(double jd,double xyz[3], void*);
34 void get_neptune_helio_coordsv(double jd,double xyz[3], void*);
35 void get_pluto_helio_coordsv(double jd,double xyz[3], void*);
36 
37 void get_mercury_helio_osculating_coords(double jd0,double jd,double xyz[3]);
38 void get_venus_helio_osculating_coords(double jd0,double jd,double xyz[3]);
39 void get_earth_helio_osculating_coords(double jd0,double jd,double xyz[3]);
40 void get_mars_helio_osculating_coords(double jd0,double jd,double xyz[3]);
41 void get_jupiter_helio_osculating_coords(double jd0,double jd,double xyz[3]);
42 void get_saturn_helio_osculating_coords(double jd0,double jd,double xyz[3]);
43 void get_uranus_helio_osculating_coords(double jd0,double jd,double xyz[3]);
44 void get_neptune_helio_osculating_coords(double jd0,double jd,double xyz[3]);
45 void get_pluto_helio_osculating_coords(double jd0,double jd,double xyz[3]);
46 
47 void get_lunar_parent_coordsv(double jd,double xyz[3], void*);
48 
49 void get_phobos_parent_coordsv(double jd,double xyz[3], void*);
50 void get_deimos_parent_coordsv(double jd,double xyz[3], void*);
51 
52 void get_io_parent_coordsv(double jd,double xyz[3], void*);
53 void get_europa_parent_coordsv(double jd,double xyz[3], void*);
54 void get_ganymede_parent_coordsv(double jd,double xyz[3], void*);
55 void get_callisto_parent_coordsv(double jd,double xyz[3], void*);
56 
57 void get_mimas_parent_coordsv(double jd,double xyz[3], void*);
58 void get_enceladus_parent_coordsv(double jd,double xyz[3], void*);
59 void get_tethys_parent_coordsv(double jd,double xyz[3], void*);
60 void get_dione_parent_coordsv(double jd,double xyz[3], void*);
61 void get_rhea_parent_coordsv(double jd,double xyz[3], void*);
62 void get_titan_parent_coordsv(double jd,double xyz[3], void*);
63 void get_hyperion_parent_coordsv(double jd,double xyz[3], void*);
64 void get_iapetus_parent_coordsv(double jd,double xyz[3], void*);
65 
66 void get_miranda_parent_coordsv(double jd,double xyz[3], void*);
67 void get_ariel_parent_coordsv(double jd,double xyz[3], void*);
68 void get_umbriel_parent_coordsv(double jd,double xyz[3], void*);
69 void get_titania_parent_coordsv(double jd,double xyz[3], void*);
70 void get_oberon_parent_coordsv(double jd,double xyz[3], void*);
71 
72 #ifdef __cplusplus
73 }
74 #endif
75 
76 
77 #endif /* _STELLPLANET_H_ */