A GLib style wrapper library around the Swiss Ephemeris library, created by Astrodienst.
Go to file
Gergely Polonkai 18b5390a33 Made some more tweaks so `make dist` generates a working distribution 2013-09-10 02:52:03 +02:00
data Fixed datafiles installation problems 2013-09-06 11:08:48 +02:00
docs/reference/swe-glib Changed documentation version number to reflect API version 2013-09-06 10:22:11 +02:00
po Created Hungarian translation 2013-09-10 01:06:40 +02:00
src Made some more tweaks so `make dist` generates a working distribution 2013-09-10 02:52:03 +02:00
swe Made some more tweaks so `make dist` generates a working distribution 2013-09-10 02:52:03 +02:00
.gitignore Added files generated by GObject Introspection to .gitignore 2013-09-06 11:11:01 +02:00
Makefile.am Made some more tweaks so `make dist` generates a working distribution 2013-09-10 02:52:03 +02:00
README.md Updated README.md 2013-09-06 12:39:36 +02:00
autogen.sh Fixed project name in autogen.sh 2013-09-05 17:14:51 +02:00
configure.ac Made some more tweaks so `make dist` generates a working distribution 2013-09-10 02:52:03 +02:00
swe-glib.pc.in Changed version number to a bit more dynamic one 2013-09-10 02:00:04 +02:00

README.md

SWE-GLib

SWE-GLib is a GLib style wrapper library around the Swiss Ephemeris library, created by Astrodienst.

The source tree contains Astrodienst's (the writers/publishers of the Swiss Ephemeris library) ephemeride files, as requested by Alois Treindl of Astrodienst in a mail written to me on 24 July, 2013.

GTK-Doc

The project utilizes GTK-Doc, requiring version 1.19 or later. Although the generated documentation is a bit messy (not everything is documented, and there are some unresolved variables, like [SERVER] on the generated index page.

Still, the documentation generates well, and at least gives a clue about object usage.

Usage

Many functions return non-opaque C structs; their documentation can be found inline, and in the generated GTK-Doc. Unless otherwise stated, the returned values should never be freed!

Initialization

First of all, you have to initialize the library:

gswe_init();

Creating the required objects

Then you need to create a GsweTimestamp object:

GsweTimestamp *timestamp = gswe_timestamp_new_from_gregorian_full(1983, 3, 7, 11, 54, 45, 0, 1.0);

The GsweTimetamp object is used to convert dates between the Gregorian calendar dates and Julian Day values (not to be confused with Julian calendar dates!).

Next, you have to create a GsweMoment object:

GsweMoment *moment = gswe_moment_new_full(timestamp, 19.081599, 47.462485, 300.0, GSWE_HOUSE_PLACIDUS);

The GsweMoment object holds information of a given moment at a given place on earth. gswe_moment_new_full() requires a GsweTimestamp object, some geographical coordinates (in degrees) together with altitude above sea level (in meters), and a house system to use.

Adding planets

After that you have to add some planets you want to do calculations on.

gswe_moment_add_planet(moment, GSWE_PLANET_SUN);

Alternatively, you can add every planets known by SWE-GLib with

gswe_moment_add_all_planets(moment);

Getting planet positions and such

Then, you can get the planet data with

GswePlanetData *sun_data = gswe_moment_get_planet(moment, GSWE_PLANET_SUN);

Getting aspects and mirrorpoints

SWE-GLib is also able to calculate aspects and mirrorpoints. This functionality does not exist in the Swiss Ephemeris library, though. For this, of course, you have to add multiple planets (at least two) to your GsweMoment. After that, you can call gswe_moment_get_planet_aspects() and gswe_moment_get_planet_mirrorpoints().

GList *sun_aspects = gswe_moment_get_planet_aspects(moment, GSWE_PLANET_SUN);
GList *sun_mirrorpoints = gswe_moment_get_planet_mirrorpoints(moment, GSWE_PLANET_SUN);

The returned GList objects hold zero or more GsweAspectData or GsweMirrorData objects, respectively.

Getting the Moon phase

Last, but not least, SWE-GLib can calculate Moon's phase at the given moment. For that, you have to call gswe_moment_get_moon_phase():

GsweMoonPhaseData *moon_phase = gswe_moment_get_moon_phase(moment);

About altitude

The Swiss Ephemeris library requires the altitude value to be specified for several calculations. It also notifies how important it is:

the altitude above sea must be in meters. Neglecting the altitude can result in an error of about 2 arc seconds with the moon and at an altitude 3000m.

2 arc seconds is about 0.000555 degrees of error, which is, well, kind of small. Of course, if you need very precise horoscopes, precise horoscopes; otherwise, it is safe to pass any value (well, that seems logical. The average level of all dry lands is about 840 meters; the average level of the whole planet Earth (including oceans and seas) is around 280 meters).

API stability

The project is currently marked as 1.0. However, without further notice, the API should not be seen as stable.

This means that some function prototypes may be modified in the near future. Mostly error handling routines are missing, so some functions will get a GError ** parameter.

Otherwise, the API is final, in term of future compatibility. New functions may be added later, though.