File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ Unreleased future version
18
18
would loop forever.
19
19
`#1046 <https://github.com/skyfielders/python-skyfield/issues/1046 >`_
20
20
21
+ * Fix: the new :class: `~skyfield.framelib.mean_equator_and_equinox_of_date `
22
+ reference frame was off by nearly 0.02 arcseconds because it applied
23
+ precession but forgot to apply the frame tie between ICRS and J2000.
24
+
21
25
v1.51 — 2025 February 23
22
26
------------------------
23
27
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class mean_equator_and_equinox_of_date(object):
60
60
"""
61
61
@staticmethod
62
62
def rotation_at (t ):
63
- return t .P
63
+ return mxm ( t .P , ICRS_to_J2000 )
64
64
65
65
class true_equator_and_equinox_of_date (object ):
66
66
"""The dynamical frame of Earth’s true equator and true equinox of date.
You can’t perform that action at this time.
0 commit comments