Skip to content

Commit 869958c

Browse files
Fix: comets were always giving 'str' as their name
1 parent ef0342f commit 869958c

File tree

3 files changed

+23
-12
lines changed

3 files changed

+23
-12
lines changed

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ Next version
3232
Another advantage is that the new name is self-documenting: it holds a
3333
3-vector with Cartesian components.
3434

35+
* Fix: the position vectors for Kepler orbit bodies, like comets and
36+
asteroids, now have a useful ``.target_name`` like ``'Ceres'`` or
37+
``'1P/Halley'`` instead of the less informative value ``'str'``.
38+
3539
v1.50 — 2024 February 15
3640
------------------------
3741

skyfield/keplerlib.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __init__(self,
2525
epoch,
2626
mu_au3_d2,
2727
center=None,
28-
target=None,
28+
target_name=None,
2929
):
3030
""" Calculates the position of an object using 2 body propagation
3131
@@ -50,10 +50,14 @@ def __init__(self,
5050
self.epoch = epoch
5151
self.mu_au3_d2 = mu_au3_d2
5252
self.center = center
53-
self.target = target
53+
self.target_name = target_name
5454

5555
self._rotation = None # TODO: make argument?
5656

57+
@property
58+
def target(self):
59+
return self # this instance itself represents the target object
60+
5761
@classmethod
5862
def _from_periapsis(
5963
cls,
@@ -65,7 +69,7 @@ def _from_periapsis(
6569
t_periapsis,
6670
gm_km3_s2,
6771
center=None,
68-
target=None,
72+
target_name=None,
6973
):
7074
"""Build a `KeplerOrbit` given its parameters and date of periapsis."""
7175
gm_au3_d2 = gm_km3_s2 * _CONVERT_GM
@@ -84,7 +88,7 @@ def _from_periapsis(
8488
t_periapsis,
8589
gm_au3_d2,
8690
center,
87-
target,
91+
target_name,
8892
)
8993

9094
@classmethod
@@ -93,7 +97,7 @@ def _from_true_anomaly(cls, p, e, i, Om, w, v,
9397
mu_km_s=None,
9498
mu_au3_d2=None,
9599
center=None,
96-
target=None,
100+
target_name=None,
97101
):
98102
""" Creates a `KeplerOrbit` object from elements using true anomaly
99103
@@ -142,7 +146,7 @@ def _from_true_anomaly(cls, p, e, i, Om, w, v,
142146
epoch,
143147
mu_km_s,
144148
center=center,
145-
target=target,
149+
target_name=target_name,
146150
)
147151

148152

@@ -158,7 +162,7 @@ def _from_mean_anomaly(
158162
epoch,
159163
gm_km3_s2,
160164
center=None,
161-
target=None,
165+
target_name=None,
162166
):
163167
""" Creates a `KeplerOrbit` object from elements using mean anomaly
164168
@@ -214,7 +218,7 @@ def _from_mean_anomaly(
214218
epoch,
215219
gm_au3_d2,
216220
center,
217-
target,
221+
target_name,
218222
)
219223

220224
def _at(self, time):

skyfield/tests/test_keplerlib.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_against_horizons():
4040
epoch=t,
4141
gm_km3_s2=GM_SUN,
4242
center=None,
43-
target=None,
43+
target_name=None,
4444
)
4545
r, v = k._at(t)[:2]
4646
sun_au = [
@@ -70,7 +70,8 @@ def test_minor_planet_with_positive_M():
7070
ceres = mpc.mpcorb_orbit(row, ts, GM_SUN)
7171
ra, dec, distance = eph['earth'].at(t).observe(eph['sun'] + ceres).radec()
7272

73-
assert ceres.target == '(1) Ceres'
73+
assert ceres.target is ceres
74+
assert ceres.target_name == '(1) Ceres'
7475
assert abs(ra.hours - 23.1437) < 0.00005
7576
assert abs(dec.degrees - -17.323) < 0.0005
7677

@@ -94,7 +95,8 @@ def test_minor_planet_with_negative_M():
9495

9596
# We can't expect close agreement, since the HORIZONS orbital
9697
# elements are different than MPC's.
97-
assert ceres.target == '(2) Pallas'
98+
assert ceres.target is ceres
99+
assert ceres.target_name == '(2) Pallas'
98100
assert abs(ra.degrees - 92.750) < 0.006
99101
assert abs(dec.degrees - -10.561) < 0.002
100102

@@ -125,7 +127,8 @@ def test_comet():
125127
assert abs(dec_want.arcseconds() - dec.arcseconds()) < 0.2
126128
assert abs(distance.au - 43.266) < 0.0005
127129

128-
assert k.target == 'C/1995 O1 (Hale-Bopp)'
130+
assert k.target is k
131+
assert k.target_name == 'C/1995 O1 (Hale-Bopp)'
129132

130133
def test_comet_with_eccentricity_of_exactly_one():
131134
ts = load.timescale()

0 commit comments

Comments
 (0)