Find when a body will next enter a different house.
Celestial body
Array of 12 house cusp longitudes
Starting Julian Date
Maximum days to search (default: 365)
HouseIngress with timing, or null if not found
const nextIngress = findNextIngress( CelestialBody.Saturn, houseCusps, currentJD);if (nextIngress) { console.log(`Saturn enters house ${nextIngress.house} on ${nextIngress.ingressDate?.year}`);} Copy
const nextIngress = findNextIngress( CelestialBody.Saturn, houseCusps, currentJD);if (nextIngress) { console.log(`Saturn enters house ${nextIngress.house} on ${nextIngress.ingressDate?.year}`);}
Find when a body will next enter a different house.