Changeset 15254 for trunk/Mars
- Timestamp:
- 04/04/13 14:22:18 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/nova.h
r15207 r15254 41 41 const LnLatPosn &ORM() 42 42 { 43 //static LnLatPosn obs; 44 //obs.lng = -(17.+53./60+26.525/3600); 45 //obs.lat = 28.+45./60+42.462/3600; 43 46 const static LnLatPosn obs = { -(17.+53./60+26.525/3600), 28.+45./60+42.462/3600 }; 44 47 return obs; … … 84 87 return rst; 85 88 } 89 EquPosn GetSolarEquCoords(double jd) 90 { 91 EquPosn equ; 92 ln_get_solar_equ_coords(jd, &equ); 93 return equ; 94 } 86 95 87 96 double GetLunarDisk(double jd) 88 97 { 89 98 return ln_get_lunar_disk(jd); 99 } 100 101 double GetLunarSdiam(double jd) 102 { 103 return ln_get_lunar_sdiam(jd); 90 104 } 91 105
Note:
See TracChangeset
for help on using the changeset viewer.