Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cgrassin/rtl_power_scripts
Python scripts to use and visualize the output of rtl_power.
https://github.com/cgrassin/rtl_power_scripts
electromagnetics python radio-astronomy rtl-sdr sdr
Last synced: 2 months ago
JSON representation
Python scripts to use and visualize the output of rtl_power.
- Host: GitHub
- URL: https://github.com/cgrassin/rtl_power_scripts
- Owner: CGrassin
- License: mit
- Created: 2019-06-15T08:56:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-15T18:30:02.000Z (over 5 years ago)
- Last Synced: 2024-02-13T21:22:48.541Z (11 months ago)
- Topics: electromagnetics, python, radio-astronomy, rtl-sdr, sdr
- Language: Python
- Size: 9.77 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scripts for rtl_power
This repository contains a suite of simple Python scripts to use the output of the RTL-SDR `rtl_power` command (mostly for radio astronomy in my case). All scripts are independant and their usage and output are detailed below.
## heatmap.py
**Purpose:** to draw a waterfall chart from `rtl_power` data. Original script for [keenerd](https://github.com/keenerd/rtl-sdr-misc).
**Usage:** basic usage `python heatmap.py input_file.csv output.png`, call `python heatmap.py -h` for arguments breakdown.
## flatten.py
**Purpose:** to convert the output of `rtl_power` to a 1D CSV file (grouping by frequency or time). Original script for [keenerd](https://github.com/keenerd/rtl-sdr-misc).
**Usage:** basic usage `python flatten.py input_file.csv > input_file_1D.csv`, call `python flatten.py -h` for arguments breakdown.
## plot_flatten.py
**Purpose:** to plot a flattened csv file.
**Usage:** basic usage `python plot_flatten.py input_file_1D.csv`.