Skip to content

Commit

Permalink
mhz
Browse files Browse the repository at this point in the history
  • Loading branch information
anarkiwi committed Jun 14, 2023
1 parent 199a6bc commit effcbe8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions gamutrf/sigfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,9 @@ def process_scan(args, scan_configs, prom_vars, df, lastbins, running_df, last_d
signals = []
for scan_config in scan_configs:
scan_df = df[
(df.freq >= scan_config["freq_start"])
& (df.freq <= scan_config["freq_end"])
(df.freq >= scan_config["freq_start"] / 1e6)
& (df.freq <= scan_config["freq_end"] / 1e6)
]
assert not scan_df.empty
signals.extend(
scipy_find_sig_windows(
scan_df,
Expand Down

0 comments on commit effcbe8

Please sign in to comment.