From aeb4181bc9687b7c7e387abe9c8c467e84865ac0 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Wed, 23 Sep 2020 18:12:56 +0300 Subject: Implement get_location_topos --- iss/predictions.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'iss/predictions.py') diff --git a/iss/predictions.py b/iss/predictions.py index 1f34a19..ac28cea 100644 --- a/iss/predictions.py +++ b/iss/predictions.py @@ -21,10 +21,13 @@ class Predictions(object): t1 = ts.ut1_jd(t0.ut1 + days) return t0, t1 - def get_predictions(self, location=TEL_AVIV, satellite_name=ISS): + def get_location_topos(self): + return Topos(latitude_degrees=self.lat, longitude_degrees=self.lng) + + def get_predictions(self, location=TEL_AVIV): satellites = self.init_stations() by_name = {sat.name: sat for sat in satellites} - satellite = by_name[satellite_name] + satellite = by_name[self.satellite] t0, t1 = self.get_next_days_timescale() -- cgit v1.3.1