Added comets Ceres, Pallas, Juno and Vesta
This commit is contained in:
parent
3d34957e31
commit
b753f2a2f8
16
src/gradix.c
16
src/gradix.c
@ -434,6 +434,22 @@ main(int argc, char *argv[])
|
||||
printf("Dark Moon.: %s, House: %d (%f)\n", signName[planetInfo->sign], planetInfo->house, planetInfo->position);
|
||||
g_free (planetInfo);
|
||||
|
||||
planetInfo = get_planet_info(SE_CERES, te, cusps);
|
||||
printf("Ceres.....: %s, House: %d (%f)\n", signName[planetInfo->sign], planetInfo->house, planetInfo->position);
|
||||
g_free(planetInfo);
|
||||
|
||||
planetInfo = get_planet_info(SE_PALLAS, te, cusps);
|
||||
printf("Pallas....: %s, House: %d (%f)\n", signName[planetInfo->sign], planetInfo->house, planetInfo->position);
|
||||
g_free(planetInfo);
|
||||
|
||||
planetInfo = get_planet_info(SE_JUNO, te, cusps);
|
||||
printf("Juno......: %s, House: %d (%f)\n", signName[planetInfo->sign], planetInfo->house, planetInfo->position);
|
||||
g_free(planetInfo);
|
||||
|
||||
planetInfo = get_planet_info(SE_VESTA, te, cusps);
|
||||
printf("Vesta.....: %s, House: %d (%f)\n", signName[planetInfo->sign], planetInfo->house, planetInfo->position);
|
||||
g_free(planetInfo);
|
||||
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user