Midpoint Trees API
Cosmobiologyは、2つの惑星のちょうど中間の度数と、その上に乗る3番目の惑星を使ってチャートを読むんだ。このendpointはチャートのmidpoint構造を計算し、各惑星のmidpointツリーを組み立て、90° dial伝統が最も活発なポイントとみなす対称性をフラグ付けするよ。
Midpoint Trees API
出生時刻と場所から、endpointは惑星の経度を取得し、ペア間のmidpointを計算して、チャート内でそのmidpoint上にある惑星を探すんだ。直接的な接触(惑星が文字通り中間の度数にある)と、dialがハードアスペクトのハーモニクスで表す間接的な接触の両方をチェックする。各惑星について、参加するmidpoint picturesをmidpointツリーにまとめ、CosmobiologistsがA = B/Cと書く構造でdata.treesに返すよ。さらに、構成の対称性(チャートが自分自身に折りたたまれる点)を検出し、data.symmetriesに返す。結果として、チャートをサインやハウスの惑星としてではなく、等距離関係のウェブとして再読し、Ebertinの学派が影響を測る方法と同じになるんだ。つまり、2つの惑星の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
このendpointは、CosmobiologyやUranianのユーザー向け、あるいは古典的なアスペクトではなくmidpoint picturesが欲しいインタプリタ向けに使うんだ。90° dialツール、Ebertinスタイルのレポート、焦点惑星をランク付けするchart analyserに最適だよ。ツリーはすぐに描画・解釈できる構造を提供する。惑星が頂点にあるpicturesをリストすれば、Cosmobiologicalな解説の核になる。出生データをnatal-chart endpointと同じものを送れば、midpoint構造は同じ惑星位置に基づくので、2つのビューは同じチャートを表すんだ。出力は惑星ごとのツリーとチャート全体の対称性を分けているから、惑星ごとの焦点リーディングか、チャート全体の構造的なロード状況のどちらかを選べるよ。
Notes
この手法はReinhold EbertinのCosmobiology(『The Combination of Stellar Influences』で定義)に従い、ハードアスペクトmidpointが重みを持つ90° dial伝統で動作するんだ。惑星の経度はSwiss Ephemeris(Astrodienst)のエンジンから熱帯黄道で取得するので、midpointとツリーはnatal endpointsと同じ位置に基づくよ。
Try the Midpoint Trees API
Grab a key and make your first call in under a minute.