Skip to content

セカンダリプログレッション

セカンダリプログレッション(「1日=1年」のプログレッションとも呼ばれる)を計算します。出生後の各日が人生の1年に対応し、時間とともにゆっくりと進化するプログレスドチャートを作成します。

必要なモジュール

progression:calc モジュールが必要です。

プログレッションの計算

bash
curl -X POST "https://api.astroapi.cloud/api/calc/progressions" \
  -H "X-Api-Key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "birthDateTime": "1990-06-15T14:30",
    "birthLocation": {
      "longitude": -0.1278,
      "latitude": 51.5074,
      "timezone": "Europe/London"
    },
    "targetDate": "2024-06-15T12:00",
    "houseSystem": "placidus",
    "language": "en",
    "includeText": true,
    "includeReadableEntities": true
  }'

パラメータ

パラメータ必須説明
birthDateTimestringはいYYYY-MM-DDTHH:mm 形式の出生日時
birthLocationobjectはい出生地(経度、緯度、タイムゾーン)
targetDatestringはいチャートをプログレスさせる目標日時(YYYY-MM-DDTHH:mm 形式)
houseSystemstringいいえハウスシステム(デフォルト:"placidus"
languagestringいいえテキストコンテンツの言語コード(デフォルト:"en"
includeTextbooleanいいえ解釈テキストを含める(デフォルト:false
includeReadableEntitiesbooleanいいえ人間が読めるエンティティタイトルを含める(デフォルト:false
pointsarrayいいえ計算に含める天体ポイント
orbsobjectいいえアスペクトタイプ別のカスタムオーブ値

位置オブジェクト

json
{
    "longitude": -0.1278,
    "latitude": 51.5074,
    "timezone": "Europe/London"
}

レスポンス

json
{
    "data": {
        "progressedDate": "2024-06-15T12:00",
        "natalDate": "1990-06-15T14:30",
        "targetDate": "2024-06-15T12:00",
        "aspects": [
            {
                "point1": "sun",
                "point2": "moon",
                "aspect": "sextile",
                "orb": 1.2,
                "applying": true
            }
        ],
        "aspectsToNatal": [
            {
                "point1": "moon",
                "point2": "sun",
                "aspect": "conjunction",
                "orb": 0.4,
                "applying": false,
                "text": "Progressed Moon conjunct natal Sun marks a significant personal turning point..."
            }
        ],
        "points": {
            "sun": {
                "longitude": 108.3,
                "latitude": 0.0,
                "sign": "cancer",
                "house": 10,
                "retrograde": false
            },
            "moon": {
                "longitude": 108.7,
                "latitude": -1.5,
                "sign": "cancer",
                "house": 10,
                "retrograde": false
            },
            "mercury": {
                "longitude": 95.1,
                "latitude": 0.8,
                "sign": "cancer",
                "house": 9,
                "retrograde": true
            }
        },
        "natalPoints": {
            "sun": {
                "longitude": 84.5,
                "latitude": 0.0,
                "sign": "gemini",
                "house": 10,
                "retrograde": false
            }
        },
        "houses": {
            "1": { "cusp": 180.5, "sign": "libra" },
            "10": { "cusp": 84.5, "sign": "gemini" }
        },
        "charts": {
            "biWheel": {
                "title": "Progressed / Natal Bi-wheel",
                "url": "https://api.astroapi.cloud/api/chart/..."
            },
            "progressed": {
                "title": "Progressed Chart",
                "url": "https://api.astroapi.cloud/api/chart/..."
            },
            "natal": {
                "title": "Natal Chart",
                "url": "https://api.astroapi.cloud/api/chart/..."
            }
        }
    }
}

レスポンスフィールド

フィールド説明
progressedDatestringチャートがプログレスされた日付
natalDatestring元の出生日時
targetDatestringリクエストで指定した目標日付
aspectsarrayプログレス惑星間のアスペクト(プログレスチャート内)
aspectsToNatalarrayプログレス惑星からネイタル惑星へのアスペクト
pointsobjectプログレスされた惑星位置
natalPointsobject参照用のネイタル惑星位置
housesobjectプログレスされたハウスカスプ
charts.biWheelobjectネイタルチャートにプログレスチャートを重ねたバイホイール
charts.progressedobjectスタンドアロンのプログレスチャート画像URL
charts.natalobjectネイタルチャート画像URL

セカンダリプログレッションの理解

セカンダリプログレッションは1日=1年という象徴的な公式を使用します。34歳(出生から34年後)のプログレスチャートを求めるには、出生日から34日後のエフェメリス位置を使用します。

プログレスムーン

プログレスムーンはすべてのプログレスポイントの中で最も速く動き、約2.5年ごとにサインを変えます。最も一般的に追跡されるプログレスポイントで、現在の感情的なテーマへの洞察を提供します。

プログレスサン

プログレスサンは約1年に1度移動します。プログレスサンのサイン変化は約30年ごとに起こる重要なライフイベントです。

プログレスからネイタルへのアスペクト

aspectsToNatal 配列は、プログレスチャートからネイタルチャートへのアスペクトを示します。これらはプログレッション予測において主に使用される指標です:

json
{
    "point1": "moon",
    "point2": "sun",
    "aspect": "conjunction",
    "orb": 0.4,
    "applying": false,
    "text": "Progressed Moon conjunct natal Sun marks a significant personal turning point..."
}

小さなオーブ(1度以下)のアスペクトは通常最も重要です。アプライングアスペクト(正確な位置に向かっている)は来たるテーマを示し、セパレーティングアスペクトは過ぎ去りつつあるエネルギーを示します。

AstroAPI Documentation