astro-rust icon indicating copy to clipboard operation
astro-rust copied to clipboard

Astronomical algorithms in Rust

Results 13 astro-rust issues
Sort by recently updated
recently updated
newest added

I was wondering if I can use this project to compute the topocentric azimuth and elevation of a planet/celestial body on Earth. Given that I don't have a lot of...

Correct impl is: ( observer_lat.sin() * alt.sin() - observer_lat.cos() * **alt**.cos() * az.cos() ).asin()

impl is currently: green_sidreal - observer_long - asc it should be: green_sidreal + observer_long - asc