Canoe
Comprehensive Atmosphere N' Ocean Engine
planets.hpp
Go to the documentation of this file.
1 #ifndef SRC_ASTRO_PLANETS_HPP_
2 #define SRC_ASTRO_PLANETS_HPP_
3 
5 double centric2graphic(double clat_deg, double rerp);
6 
8 double graphic2centric(double glat_deg, double rerp);
9 
11 double jup_graphic2centric(double glat_deg);
12 
14 double jup_centric2graphic(double glat_deg);
15 
16 #endif // SRC_ASTRO_PLANETS_HPP_
double centric2graphic(double clat_deg, double rerp)
planetocentric latitude to planetographic latitude
Definition: planets.cpp:17
double graphic2centric(double glat_deg, double rerp)
planetographic latitude to planetocentric latitude
Definition: planets.cpp:24
double jup_centric2graphic(double glat_deg)
planetocentric latitude to planetographic latitude for Jupiter
Definition: planets.cpp:36
double jup_graphic2centric(double glat_deg)
planetographic latitude to planetocentric latitude for Jupiter
Definition: planets.cpp:31