Skip to content

Commit 28b4586

Browse files
committed
Added interpolated Lilith for good measure.
1 parent 4ccbf6a commit 28b4586

4 files changed

Lines changed: 7 additions & 0 deletions

File tree

docs/5-settings.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ Calculated points:
232232
* `chart.VERTEX`
233233
* `chart.LILITH`
234234
* `chart.TRUE_LILITH`
235+
* `chart.INTERPOLATED_LILITH`
235236
* `chart.SYZYGY`
236237
* `chart.PART_OF_FORTUNE`
237238
* `chart.PART_OF_SPIRIT`
@@ -376,6 +377,7 @@ Default:
376377
chart.VERTEX: self.point_aspect_rule,
377378
chart.LILITH: self.point_aspect_rule,
378379
chart.TRUE_LILITH: self.point_aspect_rule,
380+
chart.INTERPOLATED_LILITH: self.point_aspect_rule,
379381
}
380382
```
381383

@@ -476,6 +478,7 @@ Default:
476478
chart.VERTEX: self.point_orbs,
477479
chart.LILITH: self.point_orbs,
478480
chart.TRUE_LILITH: self.point_orbs,
481+
chart.INTERPOLATED_LILITH: self.point_orbs,
479482
}
480483
```
481484

immanuel/const/names.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@
131131
chart.VERTEX: 'Vertex',
132132
chart.LILITH: 'Lilith',
133133
chart.TRUE_LILITH: 'True Lilith',
134+
chart.INTERPOLATED_LILITH: 'Interpolated Lilith',
134135
chart.SYZYGY: 'Syzygy',
135136
chart.PART_OF_FORTUNE: 'Part of Fortune',
136137
chart.PART_OF_SPIRIT: 'Part of Spirit',

immanuel/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ def aspect_rules(self) -> dict:
282282
chart.VERTEX: self.point_aspect_rule,
283283
chart.LILITH: self.point_aspect_rule,
284284
chart.TRUE_LILITH: self.point_aspect_rule,
285+
chart.INTERPOLATED_LILITH: self.point_aspect_rule,
285286
} | self._aspect_rules
286287

287288
@aspect_rules.setter
@@ -318,6 +319,7 @@ def orbs(self) -> dict:
318319
chart.VERTEX: self.point_orbs,
319320
chart.LILITH: self.point_orbs,
320321
chart.TRUE_LILITH: self.point_orbs,
322+
chart.INTERPOLATED_LILITH: self.point_orbs,
321323
} | self._orbs
322324

323325
@orbs.setter

tests/test_ephemeris.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def all_points():
7070
chart.VERTEX,
7171
chart.LILITH,
7272
chart.TRUE_LILITH,
73+
chart.INTERPOLATED_LILITH,
7374
chart.SYZYGY,
7475
chart.PART_OF_FORTUNE,
7576
)

0 commit comments

Comments
 (0)