Midpoint Trees API
Cosmobiology एक चार्ट को midpoint के ज़रिए पढ़ती है: दो ग्रहों के बीच ठीक आधा डिग्री, और कोई भी तीसरा ग्रह जो उस पर आता है। यह endpoint चार्ट की midpoint संरचना गणना करता है, प्रत्येक ग्रह के लिए midpoint ट्री बनाता है, और 90° dial परम्परा द्वारा सबसे सक्रिय बिंदुओं के रूप में माने जाने वाली symmetries को चिह्नित करता है।
Midpoint Trees API
जन्म के समय और स्थान से, endpoint ग्रहों की longitude लेता है और जोड़ों के बीच के midpoint की गणना करता है, फिर चार्ट में उन midpoint पर स्थित किसी भी ग्रह को खोजता है - सीधे संपर्क, जहाँ कोई body ठीक आधे डिग्री पर आता है, और अप्रत्यक्ष संपर्क जो dial अपने hard-aspect harmonics के ज़रिए दिखाता है। प्रत्येक ग्रह के लिए यह उन midpoint pictures को इकट्ठा करता है जिसमें वह भाग लेता है, एक midpoint ट्री बनाता है, संरचना को Cosmobiologists A = B/C के रूप में लिखते हैं, और इन्हें data.trees में लौटाता है। साथ ही, यह configuration में symmetries का पता लगाता है - वे बिंदु जहाँ चार्ट खुद पर मोड़ता है - और इन्हें data.symmetries में लौटाता है। प्रभाव यह है कि चार्ट को ग्रहों के संकेत और घरों के रूप में नहीं, बल्कि समान दूरी वाले संबंधों के जाल के रूप में फिर से पढ़ा जाता है, जो बिल्कुल Ebertin की स्कूल के अनुसार प्रभाव को तौलता है: दो अन्य ग्रहों के midpoint को पूरा करने वाला ग्रह उस बिंदु के रूप में माना जाता है जहाँ उनका संयुक्त अर्थ प्रकट होता है।
POST/v1/midpoint-trees
curl -X POST https://api.astroway.info/v1/midpoint-trees \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52
}' {
"ok": true,
"data": {
"trees": [
{
"planet": "Sun",
"pictures": [
"Moon/Venus",
"Mars/Jupiter"
]
}
],
"symmetries": [
"…"
]
}
} Parameters
| name | type | Required | |
|---|---|---|---|
| date | string (YYYY-MM-DD) | yes | Birth date. |
| time | string (HH:MM:SS) | yes | Local clock time at birth. |
| timezoneOffset | number (hours) | yes | UTC offset in effect at the birth moment (e.g. 3 for Kyiv summer time). Decimal allowed for half-hour zones. |
| latitude | number | yes | Birth-place latitude, decimal degrees (north positive). |
| longitude | number | yes | Birth-place longitude, decimal degrees (east positive). |
When to use it
जब आप Cosmobiology और Uranian दर्शकों के लिए बना रहे हों, या किसी भी interpreter के लिए जो क्लासिकल aspects की बजाय midpoint pictures चाहता हो - 90° dial टूल, Ebertin-style रिपोर्ट, या ऐसा chart analyser जो focal ग्रहों को rank करता हो - इस endpoint का उपयोग करो। ट्रीज़ तुम्हें render और interpret करने के लिए तैयार संरचना देते हैं: उन pictures की सूची बनाओ जहाँ कोई ग्रह apex पर बैठा है और तुम्हें Cosmobiological delineation का core मिल जाएगा। वही जन्म डेटा भेजो जो तुमने natal-chart endpoint के लिए इस्तेमाल किया था और midpoint संरचना समान planetary positions पर आधारित होगी, इसलिए दोनों view एक ही chart का वर्णन करेंगे। क्योंकि output per-planet ट्रीज़ को chart-wide symmetries से अलग करता है, तुम या तो focused per-planet reading या global picture चुन सकते हो जहाँ chart structurally loaded है।
Notes
यह method Reinhold Ebertin की Cosmobiology का अनुसरण करती है जैसा कि The Combination of Stellar Influences में बताया गया है, 90° dial परम्परा में जहाँ hard-aspect midpoint वजन लेता है। planetary longitudes Swiss Ephemeris (Astrodienst) engine से tropical zodiac में आती हैं, इसलिए midpoint और ट्रीज़ natal endpoints के समान positions पर आधारित होते हैं।
Try the Midpoint Trees API
Grab a key and make your first call in under a minute.