Files
intercept/data/satellites.py
T
James Smith d01742678c chore: update satellite TLE data
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-21 15:49:53 +01:00

51 lines
2.0 KiB
Python

# TLE data for satellite tracking (updated periodically)
# To update: click "Update TLE" in satellite dashboard or SSTV mode
# Data source: CelesTrak (celestrak.org)
TLE_SATELLITES = {
"ISS": (
"ISS (ZARYA)",
"1 25544U 98067A 23321.52083333 .00016717 00000-0 30171-3 0 9992",
"2 25544 51.6416 20.4567 0004561 45.3212 67.8912 15.49876543123456",
),
"NOAA-15": (
"NOAA 15",
"1 25338U 98030A 25028.84157420 .00000535 00000+0 26168-3 0 9999",
"2 25338 98.5676 356.1853 0009968 282.2567 77.7505 14.26225252390049",
),
"NOAA-18": (
"NOAA 18",
"1 28654U 05018A 25028.87364583 .00000454 00000+0 25082-3 0 9996",
"2 28654 98.8801 59.1618 0013609 281.7181 78.2479 14.13003043 24668",
),
"NOAA-19": (
"NOAA 19",
"1 33591U 09005A 25028.82370718 .00000425 00000+0 24556-3 0 9998",
"2 33591 99.0905 25.2347 0013428 265.3457 94.6190 14.13019285827447",
),
"NOAA-20": (
"NOAA 20 (JPSS-1)",
"1 43013U 17073A 26141.21646093 .00000052 00000+0 45436-4 0 9996",
"2 43013 98.7764 80.9203 0001233 42.6389 317.4882 14.19506117440643",
),
"NOAA-21": (
"NOAA 21 (JPSS-2)",
"1 54234U 22150A 26141.25034758 .00000025 00000+0 32664-4 0 9997",
"2 54234 98.7052 80.4933 0000516 290.1874 69.9247 14.19559916182728",
),
"METEOR-M2": (
"METEOR-M 2",
"1 40069U 14037A 26141.25652306 .00000366 00000+0 18646-3 0 9999",
"2 40069 98.5106 117.9520 0006860 109.5984 250.5935 14.21454410615491",
),
"METEOR-M2-3": (
"METEOR-M2 3",
"1 57166U 23091A 26141.32851392 -.00000014 00000+0 12575-4 0 9996",
"2 57166 98.6097 196.8537 0002910 239.0757 121.0137 14.24044204150691",
),
"METEOR-M2-4": (
"METEOR-M2 4",
"1 59051U 24039A 26141.24240655 .00000007 00000+0 22827-4 0 9991",
"2 59051 98.6997 100.8818 0005969 244.5272 115.5289 14.22426426115439",
),
}