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

    Function getFallbackHouseSystem

    • Get a fallback house system for extreme latitudes

      When Placidus or other systems fail at high latitudes, this suggests an appropriate alternative system that works everywhere.

      Parameters

      • preferredSystem: HouseSystem

        The originally requested system

      • latitude: number

        Geographic latitude in degrees

      Returns HouseSystem

      Original system if available, otherwise a suitable fallback

      getFallbackHouseSystem('placidus', 51.5)   // 'placidus' (works here)
      getFallbackHouseSystem('placidus', 70) // 'porphyry' (fallback)
      getFallbackHouseSystem('equal', 70) // 'equal' (works here)