Posted: Fri Apr 24, 2015 6:33 pm
Mercury seems to be heading rapidly towards going under the beams is he not? If so that it is not strong in this context if I understand it
Matthew
Matthew
Skyscript Astrology Forum
https://www.skylab.build.applab.net/forums/
https://www.skylab.build.applab.net/forums/viewtopic.php?t=8728
Under the beams was within 15 degrees in ancient sources. But some renaissance sources used a wider orb of 17 degrees.going under the beams is usually defined as being within a smaller distance then 21 degrees, but hey - i could be wrong..
Jupiter and Venus are both occidental, although 'vespertine' is the term more typically used of Venus (and Mercury). Vespertine means appearing as an evening star; matutine, appearing as a morning star.francescomanfredi wrote:So, we say that oriental is rising before the Sun. And that occidental is rising after the Sun. In that chart, Mars and Saturn are both oriental (and 'upper-horizon': because they rise before the Sun). But of Jupiter and Venus (both 'under-horizon'), we say that Venus is occidental and Jupiter oriental.
Not entirely sure what you mean by this. Every planet has its own cycle with regard to the Sun, and is always somewhere in that cycle, that is, in some phase or other.So, if I got it correct, every planet has its own particular phase too.
Am I correct?
I would agree. By sect its not just that we have a night chart. In terms of hemisphere you have an exalted planet of the night sect above the horizon in direct motion and in an effective house. Traditionally, nocturnal sect planets are more powerful above the earth at night. By house placement Mars is effective in the 11th house.mars is the most dignified planet in the chart based on solar phase as i understand it. if you add sect and some other things like dignity - mars for sure..
I admit this stuff used to confuse me too when I first encountered the topic here on the forum. And I had the advantage of Deborah Houlding trying to explain it!march 12th 1988 seems to be the superior or inferior conjunction of sun to mercury, while april 21st is the opposite.. march 28th is somewhere in the middle.. one can see this doing heliocentric charts, as opposed to geocentric charts... maybe some astro program helps one to see this easier, but it definitely isn't solar fire!
There was also a traditional view on the two conjunctions that tied into the theory of epicycles and celestial spheres. The inferior conjunction takes place with the inner planet between the earth and sun. They are at their closest proximity at this stage. In the medieval view this associated the inner planets more to the worldly impermanence of the earth/sub-lunar realm. In contrast the superior conjunction takes place behind the Sun when the inner planets are further from the earth. In terms of celestial spheres this was thought to bring these planets closer to the heavenly realm/God.The thing to remember with the inferior planets is that there is two cycles within one, because they open from the Sun in their direct phase, reach maximum elongation, and return back in their retrograde motion ? this is only half of the full cycle ? then they continue separating in a retrograde motion and finally close into the Sun again. Because of this ?double-cycle? effect, they deserve more explanation.

Code: Select all
from flatlib import const
from flatlib.chart import Chart
from flatlib.datetime import Datetime
from flatlib.geopos import GeoPos
from flatlib.dignities import essential
from flatlib.dignities.accidental import AccidentalDignity
# The data
date = Datetime('1988/03/28', '6:10', '+02:00')
pos = GeoPos('41n38', '15e55')
chart = Chart(date, pos)
# For each of seven planets
for ID in const.LIST_SEVEN_PLANETS:
obj = chart.get(ID)
print('----- %s -----' % obj)
# Essential dignities
info = essential.EssentialInfo(obj)
print('Essential Score:', info.score)
# Accidental dignities
aDign = AccidentalDignity(obj, chart)
print('Haiz:', aDign.haiz())
# Accidental dignities properties
scoreP = aDign.getScoreProperties()
print('Accidental Dignities:', {prop: score for (prop,score) in scoreP.items() if score != 0})
scoreA = aDign.score()
print('Accidental Score:', scoreA)
# Total score
print('Total Score:', info.score + scoreA)
print('')
Code: Select all
----- <Sun> -----
Essential Score: 7
Haiz: None
Accidental Dignities: {'benefic_asp60': 3, 'void': -2, 'house': 5, 'speed': 2}
Accidental Score: 8
Total Score: 15
----- <Moon> -----
Essential Score: 0
Haiz: Contra-Haiz
Accidental Dignities: {'haiz': -2, 'no_under_sun': 5, 'peregrine': -5, 'orientality': 2, 'speed': -2, 'light': 1, 'void': -2, 'house': 3}
Accidental Score: 0
Total Score: 0
----- <Mercury> -----
Essential Score: -7
Haiz: None
Accidental Dignities: {'benefic_asp60': 3, 'direction': 4, 'orientality': -2, 'north_node': -3, 'light': -1, 'speed': 2, 'house': 5, 'no_under_sun': 5, 'joy_house': 2}
Accidental Score: 15
Total Score: 8
----- <Venus> -----
Essential Score: 8
Haiz: None
Accidental Dignities: {'direction': 4, 'joy_sign': 3, 'orientality': 2, 'speed': 2, 'light': 1, 'no_under_sun': 5, 'house': 1}
Accidental Score: 18
Total Score: 26
----- <Mars> -----
Essential Score: 7
Haiz: None
Accidental Dignities: {'direction': 4, 'no_under_sun': 5, 'orientality': 2, 'speed': 2, 'light': 1, 'benefic_asp120': 4, 'house': 4}
Accidental Score: 22
Total Score: 29
----- <Jupiter> -----
Essential Score: 0
Haiz: None
Accidental Dignities: {'direction': 4, 'no_under_sun': 5, 'peregrine': -5, 'orientality': -2, 'speed': 2, 'light': -1, 'void': -2, 'house': 3}
Accidental Score: 4
Total Score: 4
----- <Saturn> -----
Essential Score: 5
Haiz: Contra-Haiz
Accidental Dignities: {'direction': 4, 'haiz': -2, 'orientality': 2, 'speed': -2, 'light': 1, 'void': -2, 'no_under_sun': 5, 'house': 5}
Accidental Score: 11
Total Score: 16