Chart
natal.chart
This module provides the Chart class for generating SVG representations of natal charts. It includes functionality for creating sign wheels, house wheels, body placements, and aspect lines for both single and composite charts.
Chart
Bases: DotDict
SVG representation of a natal chart.
This class generates the visual components of an astrological chart, including sign wheels, house wheels, planet placements, and aspect lines. It supports both single and composite charts.
Source code in natal/chart.py
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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 |
|
bg_colors: list[str]
cached
property
Get the background colors for each house.
Returns:
Type | Description |
---|---|
list[str]
|
A list of hex color strings for house backgrounds |
house_vertices: list[tuple[float, float]]
cached
property
Calculate the vertices (start and end degrees) of each house.
Returns:
Type | Description |
---|---|
list[tuple[float, float]]
|
A list of tuples containing start and end degrees for each house |
svg: str
property
Generate the SVG representation of the chart.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
SVG content. |
__init__(data1: Data, width: int, height: int | None = None, data2: Data | None = None) -> None
Initialize a Chart object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data1
|
Data
|
Primary chart data |
required |
width
|
int
|
Width of the SVG |
required |
height
|
int | None
|
Height of the SVG. If None, set to width |
None
|
data2
|
Data | None
|
Secondary chart data for composite charts |
None
|
Returns:
Type | Description |
---|---|
None
|
None |
Source code in natal/chart.py
adjusted_degrees(degrees: list[float], min_degree: float) -> list[float]
Adjust spacing between celestial bodies to avoid overlap.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
degrees
|
list[float]
|
Sorted normalized degrees of celestial bodies |
required |
min_degree
|
float
|
Minimum allowed degree separation |
required |
Returns:
Type | Description |
---|---|
list[float]
|
Adjusted degrees of celestial bodies |
Source code in natal/chart.py
aspect_lines(radius: float, aspects: list[Aspect]) -> list[str]
Draw aspect lines between aspectable celestial bodies.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
radius
|
float
|
Radius of the aspect wheel |
required |
aspects
|
list[Aspect]
|
List of aspects to draw |
required |
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing aspect lines |
Source code in natal/chart.py
background(radius: float, **kwargs) -> str
Create a background circle for the chart.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
radius
|
float
|
Radius of the background circle |
required |
**kwargs
|
Additional attributes for the circle element |
{}
|
Returns:
Type | Description |
---|---|
str
|
An SVG circle element representing the background |
Source code in natal/chart.py
body_wheel(wheel_radius: float, data: Data, min_degree: float) -> list[str]
Generate elements for both inner and outer body wheels.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
wheel_radius
|
float
|
Radius of the wheel |
required |
data
|
Data
|
Chart data to use |
required |
min_degree
|
float
|
Minimum degree separation between bodies |
required |
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing the body wheel |
Source code in natal/chart.py
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 |
|
house_wheel() -> list[str]
Generate the house wheel.
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing the house wheel |
Source code in natal/chart.py
inner_aspect() -> list[str]
Generate aspect lines for the inner wheel in composite charts.
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing aspect lines |
Source code in natal/chart.py
inner_body_wheel() -> list[str] | None
Generate the inner body wheel for composite charts.
Returns:
Type | Description |
---|---|
list[str] | None
|
A list of SVG elements representing the inner body wheel, or None for single charts |
Source code in natal/chart.py
outer_aspect() -> list[str]
Generate aspect lines for the outer wheel in single charts.
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing aspect lines |
Source code in natal/chart.py
outer_body_wheel() -> list[str]
Generate the outer body wheel for single or composite charts.
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing the outer body wheel |
Source code in natal/chart.py
sector(radius: int, start_deg: float, end_deg: float, fill: str = 'white', stroke_color: str = 'black', stroke_width: float = 1, stroke_opacity: float = 1) -> str
Create a sector shape in SVG format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
radius
|
int
|
Radius of the sector |
required |
start_deg
|
float
|
Starting angle in degrees |
required |
end_deg
|
float
|
Ending angle in degrees |
required |
fill
|
str
|
Fill color of the sector |
'white'
|
stroke_color
|
str
|
Stroke color of the sector |
'black'
|
stroke_width
|
float
|
Width of the stroke |
1
|
stroke_opacity
|
float
|
Opacity of the stroke |
1
|
Returns:
Type | Description |
---|---|
str
|
An SVG path element representing the sector |
Source code in natal/chart.py
sign_wheel() -> list[str]
Generate the zodiac sign wheel.
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing the sign wheel |
Source code in natal/chart.py
sign_wheel_symbols() -> list[str]
Generate the zodiac sign symbols for the sign wheel.
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing the zodiac sign symbols |
Source code in natal/chart.py
svg_root(content: str | list[str]) -> str
Generate an SVG root element with sensible defaults.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content
|
str | list[str]
|
The content to be included in the SVG root |
required |
Returns:
Type | Description |
---|---|
str
|
An SVG root element as a string |
Source code in natal/chart.py
vertex_wheel() -> list[str]
Generate vertex lines for the chart.
Returns:
Type | Description |
---|---|
list[str]
|
A list of SVG elements representing vertex lines |