Celestine API Documentation - v0.2.0
    Preparing search index...

    Interface ProgressedChart

    Complete progressed chart result.

    const progressed = calculateProgressedChart(birthData, targetDate);

    console.log(`Solar Arc: ${progressed.solarArc}°`);
    console.log(`Progressed Sun: ${progressed.planets[0].formatted}`);

    for (const aspect of progressed.aspectsToNatal) {
    console.log(`P.${aspect.progressedBody} ${aspect.symbol} N.${aspect.natalBody}`);
    }
    interface ProgressedChart {
        dates: ProgressedChartDates;
        planets: ProgressedPlanet[];
        angles: ProgressedAngles;
        solarArc: number;
        solarArcPositions: ProgressedPlanet[];
        aspectsToNatal: ProgressedAspect[];
        aspectsProgressed: ProgressedAspect[];
        summary: ProgressionSummary;
        config: Required<ProgressionConfig>;
    }
    Index

    Properties

    dates: ProgressedChartDates

    Date information

    planets: ProgressedPlanet[]

    Progressed planetary positions

    Progressed angles (ASC, MC, DSC, IC)

    solarArc: number

    Solar arc value in degrees

    solarArcPositions: ProgressedPlanet[]

    Solar arc directed positions (if includeSolarArc is true)

    aspectsToNatal: ProgressedAspect[]

    Progressed-to-Natal aspects

    aspectsProgressed: ProgressedAspect[]

    Progressed-to-Progressed aspects (if enabled)

    Summary information

    config: Required<ProgressionConfig>

    Configuration used