Add data files for asteroids

This commit is contained in:
Gergely Polonkai 2014-09-02 15:28:53 +02:00
parent f21ce84b17
commit a3a1dd0bd4
14 changed files with 30 additions and 15 deletions

View File

@ -58,6 +58,18 @@ sweph_DATA = \
sweph-data/seplm48.se1 \ sweph-data/seplm48.se1 \
sweph-data/seplm54.se1 \ sweph-data/seplm54.se1 \
sweph-data/seleapsec.txt \ sweph-data/seleapsec.txt \
data/sweph-data/s136199.se1 \
data/sweph-data/s136199s.se1 \
data/sweph-data/se00010s.se1 \
data/sweph-data/se00034s.se1 \
data/sweph-data/se00157s.se1 \
data/sweph-data/se07066s.se1 \
data/sweph-data/se08405s.se1 \
data/sweph-data/se10199s.se1 \
data/sweph-data/se90377.se1 \
data/sweph-data/se90377s.se1 \
data/sweph-data/se90482.se1 \
data/sweph-data/se90482s.se1 \
$(NULL) $(NULL)
EXTRA_DIST = \ EXTRA_DIST = \

BIN
data/sweph-data/s136199.se1 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
data/sweph-data/se90377.se1 Normal file

Binary file not shown.

Binary file not shown.

BIN
data/sweph-data/se90482.se1 Normal file

Binary file not shown.

Binary file not shown.

View File

@ -71,12 +71,14 @@
* This enum holds the planet identifiers known by SWE-GLib. * This enum holds the planet identifiers known by SWE-GLib.
*/ */
typedef enum { typedef enum {
// Theoretical/non-existing points
GSWE_PLANET_NONE = 0, GSWE_PLANET_NONE = 0,
GSWE_PLANET_ASCENDANT, GSWE_PLANET_ASCENDANT,
GSWE_PLANET_MC, GSWE_PLANET_MC,
GSWE_PLANET_VERTEX, GSWE_PLANET_VERTEX,
GSWE_PLANET_MOON_NODE, GSWE_PLANET_MOON_NODE,
GSWE_PLANET_MOON_APOGEE, GSWE_PLANET_MOON_APOGEE,
// Actual astrological planets
GSWE_PLANET_SUN = 11, GSWE_PLANET_SUN = 11,
GSWE_PLANET_MOON, GSWE_PLANET_MOON,
GSWE_PLANET_MERCURY, GSWE_PLANET_MERCURY,
@ -88,21 +90,22 @@ typedef enum {
GSWE_PLANET_URANUS, GSWE_PLANET_URANUS,
GSWE_PLANET_NEPTUNE, GSWE_PLANET_NEPTUNE,
GSWE_PLANET_PLUTO, GSWE_PLANET_PLUTO,
GSWE_PLANET_CHIRON = 101, // Dwarves and asteroids
GSWE_PLANET_CERES, GSWE_PLANET_CHIRON = 101, // Included in ephemerides files
GSWE_PLANET_PALLAS, GSWE_PLANET_CERES, // Included in ephemerides files
GSWE_PLANET_JUNO, GSWE_PLANET_PALLAS, // Included in ephemerides files
GSWE_PLANET_VESTA, GSWE_PLANET_JUNO, // Included in ephemerides files
GSWE_PLANET_PHOLUS, GSWE_PLANET_VESTA, // Included in ephemerides files
GSWE_PLANET_NESSUS, GSWE_PLANET_PHOLUS, // Included in ephemerides files
GSWE_PLANET_CHARIKLO, GSWE_PLANET_NESSUS, // 7066
GSWE_PLANET_SEDNA, GSWE_PLANET_CHARIKLO, // 10199
GSWE_PLANET_ERIS, GSWE_PLANET_SEDNA, // 90377
GSWE_PLANET_DEJANIRA, GSWE_PLANET_ERIS, // 136199
GSWE_PLANET_CIRCE, GSWE_PLANET_DEJANIRA, // 157
GSWE_PLANET_ORCUS, GSWE_PLANET_CIRCE, // 34
GSWE_PLANET_ASBOLUS, GSWE_PLANET_ORCUS, // 90482
GSWE_PLANET_HYGIEA GSWE_PLANET_ASBOLUS, // 8405
GSWE_PLANET_HYGIEA // 10
} GswePlanet; } GswePlanet;
/* Moon Apogee in astrology is often referred to as the Dark Moon, or Lilith */ /* Moon Apogee in astrology is often referred to as the Dark Moon, or Lilith */