brahe 1.4.0

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
Documentation
# /// script
# dependencies = ["brahe"]
# ///
import brahe as bh

bh.initialize_eop()
client = bh.celestrak.CelestrakClient()
passes = bh.location_accesses(
    bh.PointLocation(-122.4194, 37.7749, 0.0),  # San Francisco
    client.get_sgp_propagator(catnr=25544, step_size=60.0),  # ISS
    bh.Epoch.now(),
    bh.Epoch.now() + 24 * 3600.0,  # Next 24 hours
    bh.ElevationConstraint(min_elevation_deg=10.0),
)

print("Upcoming passes for ISS over San Francisco in the next 24 hours:")
for p in passes:
    print(
        f"Start: {p.t_start}, End: {p.t_end}, Max Elevation: {p.elevation_max:.2f} deg"
    )