We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2488ff commit 3a936c3Copy full SHA for 3a936c3
skyfield/sgp4lib.py
@@ -170,6 +170,10 @@ def _position_and_velocity_TEME_km(self, t):
170
171
def ITRF_position_velocity_error(self, t):
172
"""Deprecated: use the TEME and ITRS frame objects instead."""
173
+ # TODO: can we teach frame objects to figure out that the
174
+ # transform TEME -> ITRS can not only skip the t.M rotation, but
175
+ # can also subtract the angles of their two competing z-axis
176
+ # rotations and call rot_z() only once instead of twice?
177
rTEME, vTEME, error = self._position_and_velocity_TEME_km(t)
178
rTEME /= AU_KM
179
vTEME /= AU_KM
0 commit comments