mirror of
https://github.com/smittix/intercept.git
synced 2026-05-29 20:29:27 -07:00
Fix satellite target switching regression
This commit is contained in:
@@ -796,6 +796,9 @@
|
|||||||
{ description: 'APRS digipeater', downlink_low: 145.825, downlink_high: 145.825, uplink_low: null, uplink_high: null, mode: 'FM AX.25', baud: 1200, status: 'active', type: 'beacon', service: 'Packet' },
|
{ description: 'APRS digipeater', downlink_low: 145.825, downlink_high: 145.825, uplink_low: null, uplink_high: null, mode: 'FM AX.25', baud: 1200, status: 'active', type: 'beacon', service: 'Packet' },
|
||||||
{ description: 'SSTV events', downlink_low: 145.800, downlink_high: 145.800, uplink_low: null, uplink_high: null, mode: 'FM', baud: null, status: 'active', type: 'image', service: 'SSTV' }
|
{ description: 'SSTV events', downlink_low: 145.800, downlink_high: 145.800, uplink_low: null, uplink_high: null, mode: 'FM', baud: null, status: 'active', type: 'image', service: 'SSTV' }
|
||||||
],
|
],
|
||||||
|
40069: [
|
||||||
|
{ description: 'Meteor LRPT weather downlink', downlink_low: 137.900, downlink_high: 137.900, uplink_low: null, uplink_high: null, mode: 'LRPT', baud: 72000, status: 'active', type: 'image', service: 'Weather' }
|
||||||
|
],
|
||||||
57166: [
|
57166: [
|
||||||
{ description: 'Meteor LRPT weather downlink', downlink_low: 137.900, downlink_high: 137.900, uplink_low: null, uplink_high: null, mode: 'LRPT', baud: 72000, status: 'active', type: 'image', service: 'Weather' }
|
{ description: 'Meteor LRPT weather downlink', downlink_low: 137.900, downlink_high: 137.900, uplink_low: null, uplink_high: null, mode: 'LRPT', baud: 72000, status: 'active', type: 'image', service: 'Weather' }
|
||||||
],
|
],
|
||||||
@@ -1788,7 +1791,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function calculatePasses() {
|
async function calculatePasses() {
|
||||||
const requestId = ++_passRequestId;
|
|
||||||
const lat = parseFloat(document.getElementById('obsLat').value);
|
const lat = parseFloat(document.getElementById('obsLat').value);
|
||||||
const lon = parseFloat(document.getElementById('obsLon').value);
|
const lon = parseFloat(document.getElementById('obsLon').value);
|
||||||
const requestKey = getActivePassRequestKey(selectedSatellite);
|
const requestKey = getActivePassRequestKey(selectedSatellite);
|
||||||
@@ -1799,6 +1801,8 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const requestId = ++_passRequestId;
|
||||||
|
|
||||||
if (container) {
|
if (container) {
|
||||||
container.innerHTML = '<div style="text-align:center;color:var(--text-secondary);padding:20px;">Calculating passes...</div>';
|
container.innerHTML = '<div style="text-align:center;color:var(--text-secondary);padding:20px;">Calculating passes...</div>';
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,6 +55,20 @@ _BUILTIN_TRANSMITTERS: dict[int, list[dict]] = {
|
|||||||
"service": "SSTV",
|
"service": "SSTV",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
40069: [
|
||||||
|
{
|
||||||
|
"description": "Meteor LRPT weather downlink",
|
||||||
|
"downlink_low": 137.900,
|
||||||
|
"downlink_high": 137.900,
|
||||||
|
"uplink_low": None,
|
||||||
|
"uplink_high": None,
|
||||||
|
"mode": "LRPT",
|
||||||
|
"baud": 72000,
|
||||||
|
"status": "active",
|
||||||
|
"type": "image",
|
||||||
|
"service": "Weather",
|
||||||
|
},
|
||||||
|
],
|
||||||
57166: [
|
57166: [
|
||||||
{
|
{
|
||||||
"description": "Meteor LRPT weather downlink",
|
"description": "Meteor LRPT weather downlink",
|
||||||
|
|||||||
Reference in New Issue
Block a user