From df80d25209998ce73935aaba546b62e9f9826a0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Drza=C5=82?= Date: Sun, 26 Jun 2022 18:38:35 +0200 Subject: [PATCH] Update rfplot.py --- rfplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfplot.py b/rfplot.py index 4001ddf..1c623f6 100755 --- a/rfplot.py +++ b/rfplot.py @@ -136,7 +136,7 @@ def main(): def plot_to_file(array): print(array.shape) ts1 = Time([mdates.num2date(x) for x in array[:,0]]).mjd - freqs = np.array([*1e6 + fcen for x in array[:,1]]) + freqs = np.array([x*1e6 + fcen for x in array[:,1]]) if base_satellite is not None: temp_t = ts.utc([mdates.num2date(x) for x in array[:,0]]) freqs -= get_doppler_correction(site_location, base_satellite, temp_t, fcen)