iausathub / satchecker

IAU CPS SatHub tool for satellite position prediction
BSD 3-Clause "New" or "Revised" License
7 stars 1 forks source link

Verify if az_el_to_ra_dec is correct #86

Open github-actions[bot] opened 1 month ago

github-actions[bot] commented 1 month ago

The results of this function in combination with the other coordinate system updates

for SGP4 give results similar to, but not identical to, the Skyfield results, so each

new conversion needs to be individually verified

https://github.com/iausathub/satchecker/blob/c5a9a3b0fbe274986a361d37c20d86114d8fddba/src/api/utils/coordinate_systems.py#L212


    return r_eci

# TODO: Verify if az_el_to_ra_dec is correct
# The results of this function in combination with the other coordinate system updates
# for SGP4 give results similar to, but not identical to, the Skyfield results, so each
# new conversion needs to be individually verified
def az_el_to_ra_dec(
    az: float, el: float, lat: float, lon: float, jd: float
) -> Tuple[float, float]: