kerykeion 4.13.0__tar.gz → 4.13.2__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.13.0 → kerykeion-4.13.2}/PKG-INFO +1 -1
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/astrological_subject.py +2 -1
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/ephemeris_data.py +2 -2
- {kerykeion-4.13.0 → kerykeion-4.13.2}/pyproject.toml +1 -1
- {kerykeion-4.13.0 → kerykeion-4.13.2}/LICENSE +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/README.md +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/__init__.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/aspects/__init__.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/aspects/aspects_utils.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/aspects/natal_aspects.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/aspects/synastry_aspects.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/charts/__init__.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/charts/charts_utils.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/charts/kerykeion_chart_svg.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/charts/templates/chart.xml +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/enums.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/fetch_geonames.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/kr_types/__init__.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/kr_types/chart_types.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/kr_types/kerykeion_exception.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/kr_types/kr_literals.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/kr_types/kr_models.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/kr_types/settings_models.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/relationship_score.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/report.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/settings/__init__.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/settings/kerykeion_settings.py +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/settings/kr.config.json +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/sweph/README.md +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/sweph/seas_18.se1 +0 -0
- {kerykeion-4.13.0 → kerykeion-4.13.2}/kerykeion/utilities.py +0 -0
|
@@ -250,7 +250,8 @@ class AstrologicalSubject:
|
|
|
250
250
|
elif self.perspective_type == "Topocentric":
|
|
251
251
|
self._iflag += swe.FLG_TOPOCTR
|
|
252
252
|
# geopos_is_set, for topocentric
|
|
253
|
-
self.
|
|
253
|
+
if (self.online) and (not self.tz_str) and (not self.lat) and (not self.lng):
|
|
254
|
+
self._fetch_and_set_tz_and_coordinates_from_geonames()
|
|
254
255
|
swe.set_topo(self.lng, self.lat, 0)
|
|
255
256
|
# <--- Chart Perspective check and setup
|
|
256
257
|
|
|
@@ -3,7 +3,7 @@ from kerykeion.astrological_subject import DEFAULT_HOUSES_SYSTEM_IDENTIFIER, DEF
|
|
|
3
3
|
from kerykeion.kr_types import EphemerisDictModel
|
|
4
4
|
from kerykeion.kr_types import SiderealMode, HousesSystemIdentifier, PerspectiveType, ZodiacType
|
|
5
5
|
from datetime import datetime, timedelta
|
|
6
|
-
from typing import Literal
|
|
6
|
+
from typing import Literal, Union
|
|
7
7
|
import logging
|
|
8
8
|
|
|
9
9
|
|
|
@@ -49,7 +49,7 @@ class EphemerisDataFactory:
|
|
|
49
49
|
is_dst: bool = False,
|
|
50
50
|
disable_chiron: bool = False,
|
|
51
51
|
zodiac_type: ZodiacType = DEFAULT_ZODIAC_TYPE,
|
|
52
|
-
sidereal_mode: SiderealMode
|
|
52
|
+
sidereal_mode: Union[SiderealMode, None] = None,
|
|
53
53
|
houses_system_identifier: HousesSystemIdentifier = DEFAULT_HOUSES_SYSTEM_IDENTIFIER,
|
|
54
54
|
perspective_type: PerspectiveType = DEFAULT_PERSPECTIVE_TYPE,
|
|
55
55
|
max_days: int = 730,
|
|
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
|