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

    Interface BirthData

    Birth data required to calculate a chart.

    All times should be in local time; timezone offset handles conversion to UTC.

    interface BirthData {
        year: number;
        month: number;
        day: number;
        hour: number;
        minute: number;
        second?: number;
        timezone: number;
        latitude: number;
        longitude: number;
    }
    Index

    Properties

    year: number

    Birth year (Gregorian calendar)

    month: number

    Birth month (1-12)

    day: number

    Birth day (1-31)

    hour: number

    Birth hour in local time (0-23)

    minute: number

    Birth minute (0-59)

    second?: number

    Birth second (0-59), defaults to 0

    timezone: number

    Timezone offset from UTC in hours. Positive = east of Greenwich, negative = west. Examples: -5 (EST), +1 (CET), +5.5 (IST)

    latitude: number

    Geographic latitude (-90 to +90, positive = north)

    longitude: number

    Geographic longitude (-180 to +180, positive = east)