Data
natal.data
Data
Bases: DotDict
Data object for a natal chart.
Source code in natal/data.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|
julian_day: float
property
Convert dt to UTC and return Julian day.
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
The Julian day number |
__init__(name: str, lat: float, lon: float, utc_dt: datetime | str, config: Config = Config(), moshier: bool = False) -> None
Initialize a natal chart data object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name for this chart |
required |
lat
|
float
|
Latitude of the city |
required |
lon
|
float
|
Longitude of the city |
required |
utc_dt
|
datetime | str
|
datetime object or string in format "YYYY-MM-DD HH:MM" in UTC timezone |
required |
config
|
Config
|
Configuration settings with defaults |
Config()
|
moshier
|
bool
|
Use Moshier ephemeris, no asteroids support, but more performant |
False
|
Returns:
Type | Description |
---|---|
None
|
None |
Source code in natal/data.py
calculate_aspects(body_pairs: BodyPairs) -> list[Aspect]
Calculate aspects between pairs of celestial bodies.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
body_pairs
|
BodyPairs
|
Pairs of bodies to check for aspects |
required |
Returns:
Type | Description |
---|---|
list[Aspect]
|
List of aspects found between the bodies |
Source code in natal/data.py
composite_aspects_pairs(data2: Self) -> BodyPairs
Generate pairs of aspectable bodies for composite chart.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data2
|
Self
|
Second chart data to compare against |
required |
Returns:
Type | Description |
---|---|
BodyPairs
|
Pairs of bodies to check for aspects |
Source code in natal/data.py
house_of(body: Body) -> int
Get the house number containing a celestial body.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
body
|
Body
|
The celestial body to locate |
required |
Returns:
Type | Description |
---|---|
int
|
House number (1-12) containing the body |
Source code in natal/data.py
normalize(degree: float) -> float
Normalize a degree relative to the Ascendant.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
degree
|
float
|
The degree to normalize |
required |
Returns:
Type | Description |
---|---|
float
|
Normalized degree (0-360) |
set_aspectable() -> None
Set the aspectable celestial bodies based on the display configuration.
set_aspects() -> None
set_houses_vertices() -> None
Calculate the cusps of the houses and set the vertices.
Source code in natal/data.py
set_movable_bodies() -> None
Set the positions of the planets and other celestial bodies.
set_normalized_degrees() -> None
Normalize the positions of celestial bodies relative to the first house.
Source code in natal/data.py
set_positions(bodies: list[Body]) -> list[Aspectable]
Set the positions of celestial bodies.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bodies
|
list[Body]
|
List of celestial body definitions |
required |
Returns:
Type | Description |
---|---|
list[Aspectable]
|
List of aspectable bodies with positions set |
Source code in natal/data.py
set_quadrants() -> None
Set the distribution of celestial bodies in quadrants.
Source code in natal/data.py
set_rulers() -> None
Set the rulers for each house.