1
Planetdance for windows / Re: Heliocentric aspects: Sun always conj. with Moon?
« on: May 16, 2022, 05:14:11 PM »
Chris, i don't see any reason to change it.
![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() | ![]() ![]() |
You will now by default get an email if there are replies to a topic you posted in, you can turn this off in Profile - Forum Profile - Modify - Notifications.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
if (stepOpt = 0)
step += 2; ` 1/4 degree
else
{
if (stepOpt = 1)
step += 4;
} ` 1/2 degree
else
{
if (stepOpt = 2)
step += 8;
} ` 1 degree
else
{
if (stepOpt = 3)
step += 40;
} ` 5 degrees
else
{
if (stepOpt = 4)
step += 240;
} ` 30 degrees
i = 0; for (i < 10)
{
j = 0; for (j < 100001)
{
calculate(1, jdNow - i, lon, lat, -2);
getplanet(i , 0, planetData);
pDistances[j] = planetData[5];
}
sort(pDistances, sortedPDistances, 0);
medianDistances[i] = pDistances[50001];
}
set(minMaxDistances[0], 10000000);
set(minMaxDistances[1], -1);
i = 0; for (i < 100000)
{
r = jdNow - i;
` calculate(char Index, real julianday, real placelongitude, real placelatitude, char housesystem);
calculate(1, r, lon, lat, -2);
getradii(1, planetRads);
j = 0; for (j < 14)
{
if (planetRads[j] < minMaxDistances[0][j])
minMaxDistances[0][j] = planetRads[j];
if (planetRads[j] > minMaxDistances[1][j])
minMaxDistances[1][j] = planetRads[j];
}
}