diff --git a/docs/3-examples.md b/docs/3-examples.md index 5133907..82e2fbd 100644 --- a/docs/3-examples.md +++ b/docs/3-examples.md @@ -85,8 +85,8 @@ The (abridged) output will look something like this: Daytime: True Moon phase: Third Quarter -Sun 10°37'26" in Capricorn, 11th House -Moon 16°19'29" in Scorpio, 8th House +Sun 10°37'26" in Capricorn, 11th House, Direct +Moon 16°19'29" in Scorpio, 8th House, Direct ... etc. Aspects for Sun: diff --git a/docs/4-data.md b/docs/4-data.md index 710c302..a5a44d6 100644 --- a/docs/4-data.md +++ b/docs/4-data.md @@ -137,7 +137,13 @@ The core of any chart, the `objects` property is a dict of Python objects repres }, "sign": { "number": 10, - "name": "Capricorn" + "name": "Capricorn", + "element": "Earth", + "modality": "Cardinal" + }, + "decan": { + "number": 2, + "name": "2nd Decan" }, "house": { "index": 2000011, @@ -226,7 +232,13 @@ A dict of Python objects keyed by index. Each house will look something like thi }, "sign": { "number": 12, - "name": "Pisces" + "name": "Pisces", + "element": "Water", + "modality": "Mutable" + }, + "decan": { + "number": 1, + "name": "1st Decan" }, "speed": 516.3767707094903, "declination": { @@ -577,7 +589,7 @@ print(natal.objects[chart.SUN]) Which will output the Sun's information only: ``` -Sun 10°37'26" in Capricorn, 11th House +Sun 10°37'26" in Capricorn, 11th House, Direct ``` Or to make the aspect code from earlier a little easier to read: