kerykeion 4.16.3__tar.gz → 4.16.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kerykeion might be problematic. Click here for more details.
- {kerykeion-4.16.3 → kerykeion-4.16.4}/PKG-INFO +1 -1
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/charts_utils.py +3 -3
- {kerykeion-4.16.3 → kerykeion-4.16.4}/pyproject.toml +1 -1
- {kerykeion-4.16.3 → kerykeion-4.16.4}/LICENSE +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/README.md +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/__init__.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/aspects/__init__.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/aspects/aspects_utils.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/aspects/natal_aspects.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/aspects/synastry_aspects.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/astrological_subject.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/__init__.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/draw_planets.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/kerykeion_chart_svg.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/templates/aspect_grid_only.xml +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/templates/chart.xml +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/templates/wheel_only.xml +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/themes/classic.css +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/themes/dark-high-contrast.css +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/themes/dark.css +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/charts/themes/light.css +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/enums.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/ephemeris_data.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/fetch_geonames.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/kr_types/__init__.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/kr_types/chart_types.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/kr_types/kerykeion_exception.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/kr_types/kr_literals.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/kr_types/kr_models.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/kr_types/settings_models.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/relationship_score.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/report.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/settings/__init__.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/settings/kerykeion_settings.py +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/settings/kr.config.json +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/sweph/README.md +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/sweph/seas_18.se1 +0 -0
- {kerykeion-4.16.3 → kerykeion-4.16.4}/kerykeion/utilities.py +0 -0
|
@@ -535,7 +535,7 @@ def draw_aspect_grid(
|
|
|
535
535
|
str: SVG string representing the aspect grid.
|
|
536
536
|
"""
|
|
537
537
|
svg_output = ""
|
|
538
|
-
style = f"stroke:{stroke_color}; stroke-width: 1px;
|
|
538
|
+
style = f"stroke:{stroke_color}; stroke-width: 1px; fill:none"
|
|
539
539
|
box_size = 14
|
|
540
540
|
|
|
541
541
|
# Filter active planets
|
|
@@ -660,7 +660,7 @@ def draw_houses_cusps_and_text_number(
|
|
|
660
660
|
# Add the house number text for the second subject
|
|
661
661
|
fill_opacity = "0" if chart_type == "Transit" else ".4"
|
|
662
662
|
path += f'<g kr:node="HouseNumber">'
|
|
663
|
-
path += f'<text style="fill:
|
|
663
|
+
path += f'<text style="fill: var(--kerykeion-chart-color-house-number); fill-opacity: {fill_opacity}; font-size: 14px"><tspan x="{xtext - 3}" y="{ytext + 3}">{i + 1}</tspan></text>'
|
|
664
664
|
path += f"</g>"
|
|
665
665
|
|
|
666
666
|
# Add the house cusp line for the second subject
|
|
@@ -1030,7 +1030,7 @@ def draw_transit_aspect_grid(
|
|
|
1030
1030
|
str: SVG string representing the aspect grid.
|
|
1031
1031
|
"""
|
|
1032
1032
|
svg_output = ""
|
|
1033
|
-
style = f"stroke:{stroke_color}; stroke-width: 1px;
|
|
1033
|
+
style = f"stroke:{stroke_color}; stroke-width: 1px; fill:none"
|
|
1034
1034
|
x_start = x_indent
|
|
1035
1035
|
y_start = y_indent
|
|
1036
1036
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|