Add asteroids Orcus and Asbolus

This commit is contained in:
Gergely Polonkai 2014-05-24 09:58:52 +02:00
parent b6071a4e46
commit 6a69271007
2 changed files with 5 additions and 1 deletions

View File

@ -96,7 +96,9 @@ typedef enum {
GSWE_PLANET_SEDNA,
GSWE_PLANET_ERIS,
GSWE_PLANET_DEJANIRA,
GSWE_PLANET_CIRCE
GSWE_PLANET_CIRCE,
GSWE_PLANET_ORCUS,
GSWE_PLANET_ASBOLUS
} GswePlanet;
/* Moon Apogee in astrology is often referred to as the Dark Moon, or Lilith */

View File

@ -170,6 +170,8 @@ void gswe_init_with_dir(gchar *directory)
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_ERIS, SE_AST_OFFSET + 136199, TRUE, _("Eris"), 2.0, 0);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_DEJANIRA, SE_AST_OFFSET + 157, TRUE, _("Dejanira"), 2.0, 0);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_CIRCE, SE_AST_OFFSET + 34, TRUE, _("Circe"), 2.0, 0);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_ORCUS, SE_AST_OFFSET + 90482, TRUE, _("Orcus"), 2.0, 0);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_ASBOLUS, SE_AST_OFFSET + 8405, TRUE, _("Asbolus"), 2.0, 0);
gswe_sign_info_table = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, (GDestroyNotify)gswe_sign_info_unref);