From f3b3ef7986c427d80c16a748d16c7cd45b69efea Mon Sep 17 00:00:00 2001 From: David Honess Date: Mon, 11 Feb 2019 14:04:29 +0100 Subject: [PATCH] Start correcting Doppler from ISS rise --- doppler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doppler.py b/doppler.py index 9c86717..ca96244 100644 --- a/doppler.py +++ b/doppler.py @@ -114,7 +114,7 @@ try: iss.tle.compute(myloc) alt = math.degrees(iss.tle.alt) - if alt > 6: # iss is flying over our location + if alt > 0: # iss is flying over our location new_freq = int(F0 - iss.tle.range_velocity * F0 / C) # doppler if new_freq != freq: print(new_freq, round(alt, 2), myloc.date)