kerykeion 3.1.1__py3-none-any.whl → 5.1.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kerykeion might be problematic. Click here for more details.
- kerykeion/__init__.py +58 -141
- kerykeion/aspects/__init__.py +14 -0
- kerykeion/aspects/aspects_factory.py +568 -0
- kerykeion/aspects/aspects_utils.py +164 -0
- kerykeion/astrological_subject_factory.py +1901 -0
- kerykeion/backword.py +820 -0
- kerykeion/chart_data_factory.py +552 -0
- kerykeion/charts/__init__.py +5 -0
- kerykeion/charts/chart_drawer.py +2794 -0
- kerykeion/charts/charts_utils.py +1840 -0
- kerykeion/charts/draw_planets.py +658 -0
- kerykeion/charts/templates/aspect_grid_only.xml +596 -0
- kerykeion/charts/templates/chart.xml +741 -0
- kerykeion/charts/templates/wheel_only.xml +653 -0
- kerykeion/charts/themes/black-and-white.css +148 -0
- kerykeion/charts/themes/classic.css +113 -0
- kerykeion/charts/themes/dark-high-contrast.css +159 -0
- kerykeion/charts/themes/dark.css +160 -0
- kerykeion/charts/themes/light.css +160 -0
- kerykeion/charts/themes/strawberry.css +158 -0
- kerykeion/composite_subject_factory.py +408 -0
- kerykeion/ephemeris_data_factory.py +443 -0
- kerykeion/fetch_geonames.py +105 -61
- kerykeion/house_comparison/__init__.py +6 -0
- kerykeion/house_comparison/house_comparison_factory.py +103 -0
- kerykeion/house_comparison/house_comparison_utils.py +126 -0
- kerykeion/kr_types/__init__.py +70 -0
- kerykeion/kr_types/chart_template_model.py +20 -0
- kerykeion/kr_types/kerykeion_exception.py +20 -0
- kerykeion/kr_types/kr_literals.py +20 -0
- kerykeion/kr_types/kr_models.py +20 -0
- kerykeion/kr_types/settings_models.py +20 -0
- kerykeion/planetary_return_factory.py +805 -0
- kerykeion/relationship_score_factory.py +301 -0
- kerykeion/report.py +779 -0
- kerykeion/schemas/__init__.py +106 -0
- kerykeion/schemas/chart_template_model.py +367 -0
- kerykeion/schemas/kerykeion_exception.py +20 -0
- kerykeion/schemas/kr_literals.py +181 -0
- kerykeion/schemas/kr_models.py +603 -0
- kerykeion/schemas/settings_models.py +188 -0
- kerykeion/settings/__init__.py +20 -0
- kerykeion/settings/chart_defaults.py +444 -0
- kerykeion/settings/config_constants.py +152 -0
- kerykeion/settings/kerykeion_settings.py +51 -0
- kerykeion/settings/translation_strings.py +1499 -0
- kerykeion/settings/translations.py +74 -0
- kerykeion/sweph/README.md +3 -0
- kerykeion/sweph/ast136/s136108s.se1 +0 -0
- kerykeion/sweph/ast136/s136199s.se1 +0 -0
- kerykeion/sweph/ast136/s136472s.se1 +0 -0
- kerykeion/sweph/ast28/se28978s.se1 +0 -0
- kerykeion/sweph/ast50/se50000s.se1 +0 -0
- kerykeion/sweph/ast90/se90377s.se1 +0 -0
- kerykeion/sweph/ast90/se90482s.se1 +0 -0
- kerykeion/sweph/seas_18.se1 +0 -0
- kerykeion/sweph/sefstars.txt +1602 -0
- kerykeion/transits_time_range_factory.py +302 -0
- kerykeion/utilities.py +762 -130
- kerykeion-5.1.9.dist-info/METADATA +1793 -0
- kerykeion-5.1.9.dist-info/RECORD +63 -0
- {kerykeion-3.1.1.dist-info → kerykeion-5.1.9.dist-info}/WHEEL +1 -2
- kerykeion-5.1.9.dist-info/licenses/LICENSE +661 -0
- kerykeion/aspects.py +0 -331
- kerykeion/charts/charts_svg.py +0 -1607
- kerykeion/charts/templates/basic.xml +0 -285
- kerykeion/charts/templates/extended.xml +0 -294
- kerykeion/kr.config.json +0 -464
- kerykeion/main.py +0 -595
- kerykeion/print_all_data.py +0 -44
- kerykeion/relationship_score.py +0 -219
- kerykeion/types.py +0 -190
- kerykeion-3.1.1.dist-info/METADATA +0 -204
- kerykeion-3.1.1.dist-info/RECORD +0 -17
- kerykeion-3.1.1.dist-info/top_level.txt +0 -1
kerykeion/kr.config.json
DELETED
|
@@ -1,464 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"language_settings": {
|
|
3
|
-
"EN": {
|
|
4
|
-
"info": "Info",
|
|
5
|
-
"cusp": "Cusp",
|
|
6
|
-
"longitude": "Longitude",
|
|
7
|
-
"latitude": "Latitude",
|
|
8
|
-
"north": "North",
|
|
9
|
-
"east": "East",
|
|
10
|
-
"south": "South",
|
|
11
|
-
"west": "West",
|
|
12
|
-
"fire": "Fire",
|
|
13
|
-
"earth": "Earth",
|
|
14
|
-
"air": "Air",
|
|
15
|
-
"water": "Water",
|
|
16
|
-
"&": "and",
|
|
17
|
-
"transits": "Transits for",
|
|
18
|
-
"type": "Type",
|
|
19
|
-
"aspects": "Couple aspects",
|
|
20
|
-
"planets_and_house": "Planets and houses for",
|
|
21
|
-
"transit_name": "Here and now",
|
|
22
|
-
"lunar_phase": "Lunar phase",
|
|
23
|
-
"day": "Day",
|
|
24
|
-
|
|
25
|
-
"planets": {
|
|
26
|
-
"Sun": "Sun",
|
|
27
|
-
"Moon": "Moon",
|
|
28
|
-
"Mercury": "Mercury",
|
|
29
|
-
"Venus": "Venus",
|
|
30
|
-
"Mars": "Mars",
|
|
31
|
-
"Jupiter": "Jupiter",
|
|
32
|
-
"Saturn": "Saturn",
|
|
33
|
-
"Uranus": "Uranus",
|
|
34
|
-
"Neptune": "Neptune",
|
|
35
|
-
"Pluto": "Pluto",
|
|
36
|
-
"Asc": "Asc",
|
|
37
|
-
"Mc": "Mc",
|
|
38
|
-
"Dsc": "Dsc",
|
|
39
|
-
"Ic": "Ic",
|
|
40
|
-
"North_Node": "North Node",
|
|
41
|
-
"Mean_Node": "Mean Node"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
|
|
45
|
-
"PT": {
|
|
46
|
-
"info": "Informações",
|
|
47
|
-
"cusp": "Casa",
|
|
48
|
-
"longitude": "Longitude",
|
|
49
|
-
"latitude": "Latitude",
|
|
50
|
-
"north": "Norte",
|
|
51
|
-
"east": "Leste",
|
|
52
|
-
"south": "Sul",
|
|
53
|
-
"west": "Oeste",
|
|
54
|
-
"fire": "Fogo",
|
|
55
|
-
"earth": "Terra",
|
|
56
|
-
"air": "Ar",
|
|
57
|
-
"water": "Água",
|
|
58
|
-
"&": "e",
|
|
59
|
-
"transits": "Trânsitos para",
|
|
60
|
-
"type": "Tipo",
|
|
61
|
-
"aspects": "Aspectos do casal",
|
|
62
|
-
"planets_and_house": "Planetas e casas para",
|
|
63
|
-
"transit_name": "Aqui e agora",
|
|
64
|
-
"lunar_phase": "Fase lunar",
|
|
65
|
-
"day": "Dia",
|
|
66
|
-
|
|
67
|
-
"planets": {
|
|
68
|
-
"Sun": "Sol",
|
|
69
|
-
"Moon": "Lua",
|
|
70
|
-
"Mercury": "Mercúrio",
|
|
71
|
-
"Venus": "Vênus",
|
|
72
|
-
"Mars": "Marte",
|
|
73
|
-
"Jupiter": "Júpiter",
|
|
74
|
-
"Saturn": "Saturno",
|
|
75
|
-
"Uranus": "Urano",
|
|
76
|
-
"Neptune": "Netuno",
|
|
77
|
-
"Pluto": "Plutão",
|
|
78
|
-
"Asc": "Asc",
|
|
79
|
-
"Mc": "Mc",
|
|
80
|
-
"Dsc": "Dsc",
|
|
81
|
-
"Ic": "Ic",
|
|
82
|
-
"North_Node": "Nodo Norte",
|
|
83
|
-
"Mean_Node": "Nodo Médio"
|
|
84
|
-
}
|
|
85
|
-
},
|
|
86
|
-
|
|
87
|
-
"IT": {
|
|
88
|
-
"info": "Info",
|
|
89
|
-
"cusp": "Cuspide",
|
|
90
|
-
"longitude": "Longitudine",
|
|
91
|
-
"latitude": "Latitudine",
|
|
92
|
-
"north": "Nord",
|
|
93
|
-
"east": "Est",
|
|
94
|
-
"south": "Sud",
|
|
95
|
-
"west": "Ovest",
|
|
96
|
-
"fire": "Fuoco",
|
|
97
|
-
"earth": "Terra",
|
|
98
|
-
"air": "Aria",
|
|
99
|
-
"water": "Acqua",
|
|
100
|
-
"&": "e",
|
|
101
|
-
"transits": "Transiti per",
|
|
102
|
-
"type": "Tipo",
|
|
103
|
-
"aspects": "Aspetti di coppia",
|
|
104
|
-
"planets_and_house": "Pianeti e case per",
|
|
105
|
-
"transit_name": "Qui ed ora",
|
|
106
|
-
"lunar_phase": "Fase lunare",
|
|
107
|
-
"day": "Giorno",
|
|
108
|
-
|
|
109
|
-
"planets": {
|
|
110
|
-
"Sun": "Sole",
|
|
111
|
-
"Moon": "Luna",
|
|
112
|
-
"Mercury": "Mercurio",
|
|
113
|
-
"Venus": "Venere",
|
|
114
|
-
"Mars": "Marte",
|
|
115
|
-
"Jupiter": "Giove",
|
|
116
|
-
"Saturn": "Saturno",
|
|
117
|
-
"Uranus": "Urano",
|
|
118
|
-
"Neptune": "Nettuno",
|
|
119
|
-
"Pluto": "Plutone",
|
|
120
|
-
"Asc": "Asc",
|
|
121
|
-
"Mc": "Mc",
|
|
122
|
-
"Dsc": "Dsc",
|
|
123
|
-
"Ic": "Ic",
|
|
124
|
-
"North_Node": "Nodo Nord",
|
|
125
|
-
"Mean_Node": "Mean Node"
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
},
|
|
129
|
-
|
|
130
|
-
"colors": {
|
|
131
|
-
"paper_0": "#000000",
|
|
132
|
-
"paper_1": "#ffffff",
|
|
133
|
-
"zodiac_bg_0": "#ff7200",
|
|
134
|
-
"zodiac_bg_1": "#6b3d00",
|
|
135
|
-
"zodiac_bg_2": "#69acf1",
|
|
136
|
-
"zodiac_bg_3": "#2b4972",
|
|
137
|
-
"zodiac_bg_4": "#ff7200",
|
|
138
|
-
"zodiac_bg_5": "#6b3d00",
|
|
139
|
-
"zodiac_bg_6": "#69acf1",
|
|
140
|
-
"zodiac_bg_7": "#2b4972",
|
|
141
|
-
"zodiac_bg_8": "#ff7200",
|
|
142
|
-
"zodiac_bg_9": "#6b3d00",
|
|
143
|
-
"zodiac_bg_10": "#69acf1",
|
|
144
|
-
"zodiac_bg_11": "#2b4972",
|
|
145
|
-
"zodiac_icon_0": "#ff7200",
|
|
146
|
-
"zodiac_icon_1": "#6b3d00",
|
|
147
|
-
"zodiac_icon_2": "#69acf1",
|
|
148
|
-
"zodiac_icon_3": "#2b4972",
|
|
149
|
-
"zodiac_icon_4": "#ff7200",
|
|
150
|
-
"zodiac_icon_5": "#6b3d00",
|
|
151
|
-
"zodiac_icon_6": "#69acf1",
|
|
152
|
-
"zodiac_icon_7": "#2b4972",
|
|
153
|
-
"zodiac_icon_8": "#ff7200",
|
|
154
|
-
"zodiac_icon_9": "#6b3d00",
|
|
155
|
-
"zodiac_icon_10": "#69acf1",
|
|
156
|
-
"zodiac_icon_11": "#2b4972",
|
|
157
|
-
"zodiac_radix_ring_0": "#ff0000",
|
|
158
|
-
"zodiac_radix_ring_1": "#ff0000",
|
|
159
|
-
"zodiac_radix_ring_2": "#ff0000",
|
|
160
|
-
"zodiac_transit_ring_0": "#ff0000",
|
|
161
|
-
"zodiac_transit_ring_1": "#ff0000",
|
|
162
|
-
"zodiac_transit_ring_2": "#0000ff",
|
|
163
|
-
"zodiac_transit_ring_3": "#0000ff",
|
|
164
|
-
"houses_radix_line": "#ff0000",
|
|
165
|
-
"houses_transit_line": "#0000ff",
|
|
166
|
-
"aspect_0": "#5757e2",
|
|
167
|
-
"aspect_30": "#810757",
|
|
168
|
-
"aspect_45": "#b14e58",
|
|
169
|
-
"aspect_60": "#d59e28",
|
|
170
|
-
"aspect_72": "#1f99b3",
|
|
171
|
-
"aspect_90": "#dc0000",
|
|
172
|
-
"aspect_120": "#36d100",
|
|
173
|
-
"aspect_135": "#985a10",
|
|
174
|
-
"aspect_144": "#7a9810",
|
|
175
|
-
"aspect_150": "#26bbcf",
|
|
176
|
-
"aspect_180": "#510060",
|
|
177
|
-
"planet_0": "#984b00",
|
|
178
|
-
"planet_1": "#150052",
|
|
179
|
-
"planet_2": "#520800",
|
|
180
|
-
"planet_3": "#400052",
|
|
181
|
-
"planet_4": "#540000",
|
|
182
|
-
"planet_5": "#47133d",
|
|
183
|
-
"planet_6": "#124500",
|
|
184
|
-
"planet_7": "#6f0766",
|
|
185
|
-
"planet_8": "#06537f",
|
|
186
|
-
"planet_9": "#713f04",
|
|
187
|
-
"planet_10": "#4c1541",
|
|
188
|
-
"planet_11": "#4c1541",
|
|
189
|
-
"planet_12": "#ff7e00",
|
|
190
|
-
"planet_13": "#FF0000",
|
|
191
|
-
"planet_14": "#0000FF",
|
|
192
|
-
"planet_15": "#000000",
|
|
193
|
-
"lunar_phase_0": "#000000",
|
|
194
|
-
"lunar_phase_1": "#FFFFFF",
|
|
195
|
-
"lunar_phase_2": "#CCCCCC"
|
|
196
|
-
},
|
|
197
|
-
|
|
198
|
-
"aspects": [
|
|
199
|
-
{
|
|
200
|
-
"degree": 0,
|
|
201
|
-
"name": "conjunction",
|
|
202
|
-
"visible": 1,
|
|
203
|
-
"visible_grid": 1,
|
|
204
|
-
"is_major": 1,
|
|
205
|
-
"is_minor": 0,
|
|
206
|
-
"orb": 10
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"degree": 30,
|
|
210
|
-
"name": "semi-sextile",
|
|
211
|
-
"visible": 0,
|
|
212
|
-
"visible_grid": 0,
|
|
213
|
-
"is_major": 0,
|
|
214
|
-
"is_minor": 1,
|
|
215
|
-
"orb": 1
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"degree": 45,
|
|
219
|
-
"name": "semi-square",
|
|
220
|
-
"visible": 0,
|
|
221
|
-
"visible_grid": 0,
|
|
222
|
-
"is_major": 0,
|
|
223
|
-
"is_minor": 1,
|
|
224
|
-
"orb": 1
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
"degree": 60,
|
|
228
|
-
"name": "sextile",
|
|
229
|
-
"visible": 1,
|
|
230
|
-
"visible_grid": 1,
|
|
231
|
-
"is_major": 1,
|
|
232
|
-
"is_minor": 0,
|
|
233
|
-
"orb": 6
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"degree": 72,
|
|
237
|
-
"name": "quintile",
|
|
238
|
-
"visible": 1,
|
|
239
|
-
"visible_grid": 1,
|
|
240
|
-
"is_major": 0,
|
|
241
|
-
"is_minor": 1,
|
|
242
|
-
"orb": 1
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"degree": 90,
|
|
246
|
-
"name": "square",
|
|
247
|
-
"visible": 1,
|
|
248
|
-
"visible_grid": 1,
|
|
249
|
-
"is_major": 1,
|
|
250
|
-
"is_minor": 0,
|
|
251
|
-
"orb": 5
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"degree": 120,
|
|
255
|
-
"name": "trine",
|
|
256
|
-
"visible": 1,
|
|
257
|
-
"visible_grid": 1,
|
|
258
|
-
"is_major": 1,
|
|
259
|
-
"is_minor": 0,
|
|
260
|
-
"orb": 8
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"degree": 135,
|
|
264
|
-
"name": "sesquiquadrate",
|
|
265
|
-
"visible": 0,
|
|
266
|
-
"visible_grid": 0,
|
|
267
|
-
"is_major": 0,
|
|
268
|
-
"is_minor": 1,
|
|
269
|
-
"orb": 1
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"degree": 144,
|
|
273
|
-
"name": "biquintile",
|
|
274
|
-
"visible": 0,
|
|
275
|
-
"visible_grid": 0,
|
|
276
|
-
"is_major": 0,
|
|
277
|
-
"is_minor": 1,
|
|
278
|
-
"orb": 1
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"degree": 150,
|
|
282
|
-
"name": "quincunx",
|
|
283
|
-
"visible": 0,
|
|
284
|
-
"visible_grid": 0,
|
|
285
|
-
"is_major": 0,
|
|
286
|
-
"is_minor": 0,
|
|
287
|
-
"orb": 1
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"degree": 180,
|
|
291
|
-
"name": "opposition",
|
|
292
|
-
"visible": 1,
|
|
293
|
-
"visible_grid": 1,
|
|
294
|
-
"is_major": 1,
|
|
295
|
-
"is_minor": 0,
|
|
296
|
-
"orb": 10
|
|
297
|
-
}
|
|
298
|
-
],
|
|
299
|
-
|
|
300
|
-
"planets": [
|
|
301
|
-
{
|
|
302
|
-
"id": 0,
|
|
303
|
-
"name": "Sun",
|
|
304
|
-
"color": "#984b00",
|
|
305
|
-
"visible": 1,
|
|
306
|
-
"element_points": 40,
|
|
307
|
-
"zodiac_relation": "4",
|
|
308
|
-
"label": "Sun",
|
|
309
|
-
"label_short": "sun"
|
|
310
|
-
},
|
|
311
|
-
{
|
|
312
|
-
"id": 1,
|
|
313
|
-
"name": "Moon",
|
|
314
|
-
"color": "#150052",
|
|
315
|
-
"visible": 1,
|
|
316
|
-
"element_points": 40,
|
|
317
|
-
"zodiac_relation": "3",
|
|
318
|
-
"label": "Moon",
|
|
319
|
-
"label_short": "moon"
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"id": 2,
|
|
323
|
-
"name": "Mercury",
|
|
324
|
-
"color": "#520800",
|
|
325
|
-
"visible": 1,
|
|
326
|
-
"element_points": 15,
|
|
327
|
-
"zodiac_relation": "2,5",
|
|
328
|
-
"label": "Mercury",
|
|
329
|
-
"label_short": "mercury"
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
"id": 3,
|
|
333
|
-
"name": "Venus",
|
|
334
|
-
"color": "#400052",
|
|
335
|
-
"visible": 1,
|
|
336
|
-
"element_points": 15,
|
|
337
|
-
"zodiac_relation": "1,6",
|
|
338
|
-
"label": "Venus",
|
|
339
|
-
"label_short": "venus"
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"id": 4,
|
|
343
|
-
"name": "Mars",
|
|
344
|
-
"color": "#540000",
|
|
345
|
-
"visible": 1,
|
|
346
|
-
"element_points": 15,
|
|
347
|
-
"zodiac_relation": "0",
|
|
348
|
-
"label": "Mars",
|
|
349
|
-
"label_short": "mars"
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
"id": 5,
|
|
353
|
-
"name": "Jupiter",
|
|
354
|
-
"color": "#47133d",
|
|
355
|
-
"visible": 1,
|
|
356
|
-
"element_points": 10,
|
|
357
|
-
"zodiac_relation": "8",
|
|
358
|
-
"label": "Jupiter",
|
|
359
|
-
"label_short": "jupiter"
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
"id": 6,
|
|
363
|
-
"name": "Saturn",
|
|
364
|
-
"color": "#124500",
|
|
365
|
-
"visible": 1,
|
|
366
|
-
"element_points": 10,
|
|
367
|
-
"zodiac_relation": "9",
|
|
368
|
-
"label": "Saturn",
|
|
369
|
-
"label_short": "saturn"
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"id": 7,
|
|
373
|
-
"name": "Uranus",
|
|
374
|
-
"color": "#6f0766",
|
|
375
|
-
"visible": 1,
|
|
376
|
-
"element_points": 10,
|
|
377
|
-
"zodiac_relation": "10",
|
|
378
|
-
"label": "Uranus",
|
|
379
|
-
"label_short": "uranus"
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"id": 8,
|
|
383
|
-
"name": "Neptune",
|
|
384
|
-
"color": "#06537f",
|
|
385
|
-
"visible": 1,
|
|
386
|
-
"element_points": 10,
|
|
387
|
-
"zodiac_relation": "11",
|
|
388
|
-
"label": "Neptune",
|
|
389
|
-
"label_short": "neptune"
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
"id": 9,
|
|
393
|
-
"name": "Pluto",
|
|
394
|
-
"color": "#713f04",
|
|
395
|
-
"visible": 1,
|
|
396
|
-
"element_points": 10,
|
|
397
|
-
"zodiac_relation": "7",
|
|
398
|
-
"label": "Pluto",
|
|
399
|
-
"label_short": "pluto"
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"id": 10,
|
|
403
|
-
"name": "Mean_Node",
|
|
404
|
-
"color": "#4c1541",
|
|
405
|
-
"visible": 0,
|
|
406
|
-
"element_points": 20,
|
|
407
|
-
"zodiac_relation": "-1",
|
|
408
|
-
"label": "North_Node",
|
|
409
|
-
"label_short": "North_Node"
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
"id": 11,
|
|
413
|
-
"name": "Mean_Node",
|
|
414
|
-
"color": "#4c1541",
|
|
415
|
-
"visible": 0,
|
|
416
|
-
"element_points": 0,
|
|
417
|
-
"zodiac_relation": "-1",
|
|
418
|
-
"label": "Mean_Node",
|
|
419
|
-
"label_short": "Mean_Node"
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"id": 12,
|
|
423
|
-
"name": "First House",
|
|
424
|
-
"color": "orange",
|
|
425
|
-
"visible": 1,
|
|
426
|
-
"element_points": 40,
|
|
427
|
-
"zodiac_relation": "-1",
|
|
428
|
-
"label": "Asc",
|
|
429
|
-
"label_short": "Asc"
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"id": 13,
|
|
433
|
-
"name": "Tenth House",
|
|
434
|
-
"color": "#FF0000",
|
|
435
|
-
"visible": 1,
|
|
436
|
-
"element_points": 20,
|
|
437
|
-
"zodiac_relation": "-1",
|
|
438
|
-
"label": "Mc",
|
|
439
|
-
"label_short": "Mc"
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"id": 14,
|
|
443
|
-
"name": "Seventh House",
|
|
444
|
-
"color": "#0000FF",
|
|
445
|
-
"visible": 0,
|
|
446
|
-
"element_points": 0,
|
|
447
|
-
"zodiac_relation": "-1",
|
|
448
|
-
"label": "Dsc",
|
|
449
|
-
"label_short": "Dsc"
|
|
450
|
-
},
|
|
451
|
-
{
|
|
452
|
-
"id": 15,
|
|
453
|
-
"name": "Fourth House",
|
|
454
|
-
"color": "#000000",
|
|
455
|
-
"visible": 0,
|
|
456
|
-
"element_points": 0,
|
|
457
|
-
"zodiac_relation": "-1",
|
|
458
|
-
"label": "Ic",
|
|
459
|
-
"label_short": "Ic"
|
|
460
|
-
}
|
|
461
|
-
],
|
|
462
|
-
|
|
463
|
-
"axes_orbit": 1
|
|
464
|
-
}
|