Calculate Koch house cusps
Uses the birthplace method with adjusted angles based on MC and latitude. Falls back to Porphyry if latitude is too high (>66°).
Ascendant in degrees (0-360)
Midheaven in degrees (0-360)
Geographic latitude in degrees
Obliquity of ecliptic in degrees
House cusps (1-12)
const asc = 15;const mc = 285;const cusps = kochHouses(asc, mc, 51.5, 23.44);console.log(cusps.cusps[0]); // 15 (House 1 = ASC) Copy
const asc = 15;const mc = 285;const cusps = kochHouses(asc, mc, 51.5, 23.44);console.log(cusps.cusps[0]); // 15 (House 1 = ASC)
Calculate Koch house cusps
Uses the birthplace method with adjusted angles based on MC and latitude. Falls back to Porphyry if latitude is too high (>66°).