mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 22:59:59 -07:00
- Add SDR hardware abstraction layer (utils/sdr/) with support for: - RTL-SDR (existing, using native rtl_* tools) - LimeSDR (via SoapySDR) - HackRF (via SoapySDR) - Add hardware type selector to UI with capabilities display - Add automatic device detection across all supported hardware - Add hardware-specific parameter validation (frequency/gain ranges) - Add setup.sh script for automated dependency installation - Update README with multi-SDR docs, installation guide, troubleshooting - Add SoapySDR/LimeSDR/HackRF to dependency definitions - Fix dump1090 detection for Homebrew on Apple Silicon Macs - Remove defunct NOAA-15/18/19 satellites, add NOAA-21 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
1.1 KiB
Python
19 lines
1.1 KiB
Python
# TLE data for satellite tracking (updated periodically)
|
|
TLE_SATELLITES = {
|
|
'ISS': ('ISS (ZARYA)',
|
|
'1 25544U 98067A 24001.00000000 .00000000 00000-0 00000-0 0 0000',
|
|
'2 25544 51.6400 0.0000 0000000 0.0000 0.0000 15.50000000000000'),
|
|
'NOAA-20': ('NOAA 20 (JPSS-1)',
|
|
'1 43013U 17073A 24001.00000000 .00000-0 00000-0 00000-0 0 0000',
|
|
'2 43013 98.7400 0.0000 0001000 0.0000 0.0000 14.19000000000000'),
|
|
'NOAA-21': ('NOAA 21 (JPSS-2)',
|
|
'1 54234U 22150A 24001.00000000 .00000-0 00000-0 00000-0 0 0000',
|
|
'2 54234 98.7100 0.0000 0001000 0.0000 0.0000 14.19000000000000'),
|
|
'METEOR-M2': ('METEOR-M 2',
|
|
'1 40069U 14037A 24001.00000000 .00000-0 00000-0 00000-0 0 0000',
|
|
'2 40069 98.5400 0.0000 0005000 0.0000 0.0000 14.21000000000000'),
|
|
'METEOR-M2-3': ('METEOR-M2 3',
|
|
'1 57166U 23091A 24001.00000000 .00000-0 00000-0 00000-0 0 0000',
|
|
'2 57166 98.7700 0.0000 0002000 0.0000 0.0000 14.23000000000000'),
|
|
}
|