From 38b749d6eb8558444b4ab11efb6a58341b7c062e Mon Sep 17 00:00:00 2001 From: Amirreza Jabbari <160654459+Amirreza-Jabbari@users.noreply.github.com> Date: Mon, 9 Dec 2024 17:05:15 +0330 Subject: [PATCH] Update de440s.bsp --- astronomy/celestial_calculator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astronomy/celestial_calculator.py b/astronomy/celestial_calculator.py index 28b0094..8a5ea33 100644 --- a/astronomy/celestial_calculator.py +++ b/astronomy/celestial_calculator.py @@ -23,7 +23,7 @@ def __init__(self, latitude, longitude, elevation=0): self.ts = load.timescale() # Load comprehensive SPICE kernel - self.planets = load('de440.bsp') + self.planets = load('de440s.bsp') # Create observer location self.location = Topos( @@ -389,4 +389,4 @@ def _generate_dates(self, start_date, end_date): while current <= end_date: dates.append(current) current += timedelta(days=1) - return dates \ No newline at end of file + return dates