Is there an existing method to get a satellite's altitude and azimuth at different times? For example, running the snippet below will retrieve the current altitude and azimuth; however, there does not appear to be an option to add a specific time to this method.
satellite = Entity["Satellite", "25544"];
altitude = SatelliteData[satellite, "Altitude"];
azimuth = SatelliteData[satellite, "Azimuth"];
{altitude, azimuth}
I have looked for a built-in method to propagate a TLE, and also tried using the Wolfram plugin for ChatGPT to find this - that led to a long sequence of ChatGPT attempts to add time as parameter to the SatelliteData function - but no luck so far.