libnova.h | libnova.h | |||
---|---|---|---|---|
skipping to change at line 58 | skipping to change at line 58 | |||
* - Atmospheric refraction | * - Atmospheric refraction | |||
* - Rise, Set and Transit times. | * - Rise, Set and Transit times. | |||
* - Semidiameters of the Sun, Moon, Planets and asteroids. | * - Semidiameters of the Sun, Moon, Planets and asteroids. | |||
* - Angular separation of bodies | * - Angular separation of bodies | |||
* - Hyperbolic motion of bodies | * - Hyperbolic motion of bodies | |||
* | * | |||
* \section docs Documentation | * \section docs Documentation | |||
* API documentation for libnova is included in the source. It can also be f ound in this website and an offline tarball is available <A href="http://li bnova.sf.net/libnovadocs.tar.gz">here</A>. | * API documentation for libnova is included in the source. It can also be f ound in this website and an offline tarball is available <A href="http://li bnova.sf.net/libnovadocs.tar.gz">here</A>. | |||
* | * | |||
* \section download Download | * \section download Download | |||
* The latest released version of libnova is 0.10.0 and was released on the 1st June 2004. | * The latest released version of libnova is 0.10.1 and was released on the 9th June 2004. | |||
* It is available for download <A href="http://sf.net/project/showfiles.php ?group_id=57697">here.</A> | * It is available for download <A href="http://sf.net/project/showfiles.php ?group_id=57697">here.</A> | |||
* | * | |||
* \section cvs CVS | * \section cvs CVS | |||
* The latest CVS version of libnova is available via CVS <A href="http://sf .net/cvs/?group_id=57697">here.</A> | * The latest CVS version of libnova is available via CVS <A href="http://sf .net/cvs/?group_id=57697">here.</A> | |||
* | * | |||
* \section licence Licence | * \section licence Licence | |||
* libnova is released under the <A href="http://www.gnu.org">GNU</A> LGPL. | * libnova is released under the <A href="http://www.gnu.org">GNU</A> LGPL. | |||
* | * | |||
* \section help Help | * \section help Help | |||
* If you are interested in helping in the future development of libnova, th en please get in touch. | * If you are interested in helping in the future development of libnova, th en please get in touch. | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
solar.h | solar.h | |||
---|---|---|---|---|
skipping to change at line 47 | skipping to change at line 47 | |||
* Calculate solar ecliptical/equatorial coordinates for a given julian date . | * Calculate solar ecliptical/equatorial coordinates for a given julian date . | |||
* Accuracy 0.01 arc second error - uses VSOP87 solution. | * Accuracy 0.01 arc second error - uses VSOP87 solution. | |||
* | * | |||
* All angles are expressed in degrees. | * All angles are expressed in degrees. | |||
*/ | */ | |||
/*! \fn double ln_get_solar_rst (double JD, struct ln_lnlat_posn * observer , struct ln_rst_time * rst); | /*! \fn double ln_get_solar_rst (double JD, struct ln_lnlat_posn * observer , struct ln_rst_time * rst); | |||
* \brief Calculate the time of rise, set and transit for the Sun. | * \brief Calculate the time of rise, set and transit for the Sun. | |||
* \ingroup solar | * \ingroup solar | |||
*/ | */ | |||
int ln_get_solar_rst_horizont (double JD, struct ln_lnlat_posn * observer, | ||||
double horizont, struct ln_rst_time * rst); | ||||
/*! \fn double ln_get_solar_rst (double JD, struct ln_lnlat_posn * observer | ||||
, struct ln_rst_time * rst); | ||||
* \brief Calculate the time of rise, set and transit for the Sun. | ||||
* \ingroup solar | ||||
*/ | ||||
int ln_get_solar_rst (double JD, struct ln_lnlat_posn * observer, struct ln _rst_time * rst); | int ln_get_solar_rst (double JD, struct ln_lnlat_posn * observer, struct ln _rst_time * rst); | |||
/*! \fn void ln_get_geom_solar_coords (double JD, struct ln_helio_posn * po sition); | /*! \fn void ln_get_geom_solar_coords (double JD, struct ln_helio_posn * po sition); | |||
* \brief Calculate solar geometric coordinates. | * \brief Calculate solar geometric coordinates. | |||
* \ingroup solar | * \ingroup solar | |||
*/ | */ | |||
void ln_get_geom_solar_coords (double JD, struct ln_helio_posn * position); | void ln_get_geom_solar_coords (double JD, struct ln_helio_posn * position); | |||
/*! \fn void ln_get_equ_solar_coords (double JD, struct ln_equ_posn * posit ion); | /*! \fn void ln_get_equ_solar_coords (double JD, struct ln_equ_posn * posit ion); | |||
* \brief Calculate apparent equatorial coordinates. | * \brief Calculate apparent equatorial coordinates. | |||
End of changes. 1 change blocks. | ||||
8 lines changed or deleted | 0 lines changed or added | |||