Skip to content

Minimalist Charts & Aspect Table ​

The Minimalist Charts & Aspect Table functionality allows you to generate simplified versions of astrological charts. This includes generating a wheel-only natal chart and an aspect grid-only natal chart. These features provide a cleaner and more focused view of the chart elements.

Wheel Natal Only Chart ​

You can generate a wheel-only natal chart, which includes only the wheel and strips away any extra details. This is useful for a minimalist presentation of the natal chart.

Example Usage ​

Here is an example of how to generate a wheel-only natal chart:

python
from kerykeion import AstrologicalSubject, KerykeionChartSVG

# Wheel Natal Only Chart

wheel_only_subject = AstrologicalSubject("John Lennon - Wheel Only", 1940, 10, 9, 18, 30, "Liverpool", "GB")
wheel_only_chart = KerykeionChartSVG(wheel_only_subject)
wheel_only_chart.makeWheelOnlySVG()

Aspect Grid Only Natal Chart ​

You can generate an aspect grid-only natal chart, which focuses solely on the aspect grid. This is useful for a detailed analysis of the aspects without the distraction of other chart elements.

Example Usage ​

Here is an example of how to generate an aspect grid-only natal chart:

python
from kerykeion import AstrologicalSubject, KerykeionChartSVG

# Aspect Grid Only Natal Chart

aspect_grid_only_subject = AstrologicalSubject("John Lennon - Aspect Grid Only", 1940, 10, 9, 18, 30, "Liverpool", "GB")
aspect_grid_only_chart = KerykeionChartSVG(aspect_grid_only_subject)
aspect_grid_only_chart.makeAspectGridOnlySVG()