1
0
Fork 0

Update rfplot.py

merge-requests/2/head
Michał Drzał 2022-06-26 18:38:35 +02:00 committed by GitHub
parent 7ded5d8bbe
commit df80d25209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)