How to calculate transits? #76
-
Hi, I love your development, could you share with me how to calculate a transits chart? Thanks :D |
Beta Was this translation helpful? Give feedback.
Answered by
g-battaglia
Aug 14, 2023
Replies: 2 comments 2 replies
-
try that for tracking mars ... If you click on my name i made a post just about the transits .. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @jonx18 , from kerykeion import AstrologicalSubject, KerykeionChartSVG
subject = AstrologicalSubject("Kanye", 1977, 6, 8, 8, 45, "Atlanta", "USA")
# Astrological Subject for the current day
transit_day = AstrologicalSubject()
transit_chart = KerykeionChartSVG(subject, "Transit", transit_day)
transit_chart.makeSVG() Please note that if you initialize an AstrologicalSubject without parameters, it is set to the current day. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
g-battaglia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @jonx18 ,
here's an example for the transit of the current day:
Please note that if you initialize an AstrologicalSubject without parameters, it is set to the current day.