Skip to content

Commit

Permalink
Updated output in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
theriftlab committed Apr 16, 2024
1 parent 7837358 commit 1a099bc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/3-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
18 changes: 15 additions & 3 deletions docs/4-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 1a099bc

Please sign in to comment.