-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
about:natal.ascept #10
Comments
There is no aspect detected between the Sun and Mars for that date. The key error just means there is no entry for Mars in the Sun's aspect list. A safer way to output aspects:
|
Thank you very much for your work. The following piece of code is not working. Could you please take a look at it for me? Thank you very much! def SearchKiteJupiter():
|
I have purposely avoided including aspect patterns in Immanuel simply because of the complexity involved in calculating them accurately. This is due to the chart objects having different orbs and aspect rules, so what initially looks like a kite might not really be a kite. Taking Jupiter as an example: Jupiter might oppose a certain object and trine two others (one on each side) which looks like a kite, but the opposing object is not always guaranteed to sextile those same two others. Differing orbs and rules might mean it aspects one and not the other, or neither of them. Often there are multiple objects opposing and trining/sextiling, and in that case every combination will need to be checked. The complexity grows exponentially with every added object. It is of course possible, but not something I am ready to tackle just yet! |
It's quite difficult for a beginner like me. Thank you for your advice and good luck! |
import datetime
from time import strftime
from immanuel.setup import settings
import swisseph as swe
from immanuel import charts
from immanuel.const import chart, calc
from immanuel.tools import position
import json
from immanuel.classes.serialize import ToJSON
native = charts.Subject(
date_time='1992-01-14 12:00:06',
latitude='57N00',
longitude='00W00',
)
natal = charts.Natal(native)
print(natal.aspects[chart.SUN][chart.MARS])
KeyError: 4000005
Do I need to make changes in the settings options, and how can I do it? I am a beginner, thank you.
The text was updated successfully, but these errors were encountered: