Find all house ingresses for a body in a date range.
Celestial body
House cusp longitudes
Start of search range
End of search range
Array of all ingresses, sorted by date
const ingresses = calculateAllIngresses( CelestialBody.Mars, houseCusps, jdStart, jdEnd);for (const ing of ingresses) { console.log(`Mars enters house ${ing.house} on ${ing.ingressDate?.year}-${ing.ingressDate?.month}`);} Copy
const ingresses = calculateAllIngresses( CelestialBody.Mars, houseCusps, jdStart, jdEnd);for (const ing of ingresses) { console.log(`Mars enters house ${ing.house} on ${ing.ingressDate?.year}-${ing.ingressDate?.month}`);}
Find all house ingresses for a body in a date range.