|
|
|
@@ -2,6 +2,28 @@
|
|
|
|
|
//
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
import type { LrptProgress, SatelliteImage, SatelliteLiveUpdate, SatellitePass, SatellitePassResponse } from "./satellite-types";
|
|
|
|
|
|
|
|
|
|
type SatelliteView = "live" | "history" | "predictions";
|
|
|
|
|
interface SatelliteBridge {
|
|
|
|
|
trxScheduleUiFrameJob?: (key: string, job: () => void) => void;
|
|
|
|
|
clearSatPredictionDom?: () => void;
|
|
|
|
|
updateSatLiveState?: (update: SatelliteLiveUpdate) => void;
|
|
|
|
|
onServerLrptProgress?: (message: LrptProgress) => void;
|
|
|
|
|
onServerLrptImage?: (message: SatelliteImage) => void;
|
|
|
|
|
addSatMapOverlay?: (image: SatelliteImage) => void;
|
|
|
|
|
resetSatHistoryView?: () => void;
|
|
|
|
|
pruneSatHistoryView?: () => void;
|
|
|
|
|
clearSatMapOverlays?: () => void;
|
|
|
|
|
takeSchedulerControlForDecoderDisable?: (button: HTMLElement) => Promise<unknown>;
|
|
|
|
|
postPath?: (path: string) => Promise<unknown>;
|
|
|
|
|
trxUi: { confirm(options: { title: string; message: string; confirmLabel: string }): Promise<boolean> };
|
|
|
|
|
satShowOnMap?: (south: number, west: number, north: number, east: number) => void;
|
|
|
|
|
enableMapSourceFilter?: (source: string) => void;
|
|
|
|
|
navigateToAprsMap?: (lat: number, lon: number) => void;
|
|
|
|
|
}
|
|
|
|
|
const satWindow = window as unknown as SatelliteBridge;
|
|
|
|
|
|
|
|
|
|
// --- SAT Plugin ---
|
|
|
|
|
// Live view: decoder state, latest image card
|
|
|
|
|
// History view: filterable table of all decoded images
|
|
|
|
@@ -16,16 +38,16 @@ const satDom = {
|
|
|
|
|
liveLatest: document.getElementById("sat-live-latest"),
|
|
|
|
|
historyList: document.getElementById("sat-history-list"),
|
|
|
|
|
historyCount: document.getElementById("sat-history-count"),
|
|
|
|
|
filterInput: document.getElementById("sat-filter"),
|
|
|
|
|
sortSelect: document.getElementById("sat-sort"),
|
|
|
|
|
typeFilter: document.getElementById("sat-type-filter"),
|
|
|
|
|
filterInput: document.getElementById("sat-filter") as HTMLInputElement | null,
|
|
|
|
|
sortSelect: document.getElementById("sat-sort") as HTMLSelectElement | null,
|
|
|
|
|
typeFilter: document.getElementById("sat-type-filter") as HTMLSelectElement | null,
|
|
|
|
|
lrptState: document.getElementById("sat-lrpt-state"),
|
|
|
|
|
viewLiveBtn: document.getElementById("sat-view-live"),
|
|
|
|
|
viewHistoryBtn: document.getElementById("sat-view-history"),
|
|
|
|
|
viewPredBtn: document.getElementById("sat-view-predictions"),
|
|
|
|
|
predFilter: document.getElementById("sat-pred-filter"),
|
|
|
|
|
predMinEl: document.getElementById("sat-pred-min-el"),
|
|
|
|
|
predCategory: document.getElementById("sat-pred-category"),
|
|
|
|
|
predFilter: document.getElementById("sat-pred-filter") as HTMLInputElement | null,
|
|
|
|
|
predMinEl: document.getElementById("sat-pred-min-el") as HTMLSelectElement | null,
|
|
|
|
|
predCategory: document.getElementById("sat-pred-category") as HTMLSelectElement | null,
|
|
|
|
|
predCurrentList: document.getElementById("sat-pred-current-list"),
|
|
|
|
|
predUpcomingList: document.getElementById("sat-pred-list"),
|
|
|
|
|
predCurrentSec: document.getElementById("sat-pred-current-section"),
|
|
|
|
@@ -34,30 +56,30 @@ const satDom = {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// ── State ───────────────────────────────────────────────────────────
|
|
|
|
|
let satImageHistory = [];
|
|
|
|
|
let satImageHistory: SatelliteImage[] = [];
|
|
|
|
|
const SAT_MAX_IMAGES = 100;
|
|
|
|
|
const SAT_PRED_PAGE_SIZE = 50;
|
|
|
|
|
let satPredShowAll = false;
|
|
|
|
|
let satFilterText = "";
|
|
|
|
|
let satActiveView = "live"; // "live" | "history" | "predictions"
|
|
|
|
|
let satPredData = [];
|
|
|
|
|
let satActiveView: SatelliteView = "live";
|
|
|
|
|
let satPredData: SatellitePass[] = [];
|
|
|
|
|
let satPredFilterText = "";
|
|
|
|
|
let satPredMinEl = 0;
|
|
|
|
|
let satPredCategory = "all";
|
|
|
|
|
let satPredSatCount = 0;
|
|
|
|
|
let satPredCountdownTimer = null;
|
|
|
|
|
let satPredCountdownTimer: ReturnType<typeof setInterval> | null = null;
|
|
|
|
|
|
|
|
|
|
// ── UI scheduler helper ─────────────────────────────────────────────
|
|
|
|
|
function scheduleSatUi(key, job) {
|
|
|
|
|
if (typeof window.trxScheduleUiFrameJob === "function") {
|
|
|
|
|
window.trxScheduleUiFrameJob(key, job);
|
|
|
|
|
function scheduleSatUi(key: string, job: () => void): void {
|
|
|
|
|
if (typeof satWindow.trxScheduleUiFrameJob === "function") {
|
|
|
|
|
satWindow.trxScheduleUiFrameJob(key, job);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
job();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── View switching ──────────────────────────────────────────────────
|
|
|
|
|
function switchSatView(view) {
|
|
|
|
|
function switchSatView(view: SatelliteView): void {
|
|
|
|
|
const leavingPredictions = satActiveView === "predictions" && view !== "predictions";
|
|
|
|
|
satActiveView = view;
|
|
|
|
|
if (satDom.liveView) satDom.liveView.style.display = view === "live" ? "" : "none";
|
|
|
|
@@ -71,7 +93,7 @@ function switchSatView(view) {
|
|
|
|
|
renderSatHistoryTable();
|
|
|
|
|
} else if (view === "predictions") {
|
|
|
|
|
satPredShowAll = false;
|
|
|
|
|
loadSatPredictions();
|
|
|
|
|
void loadSatPredictions();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -80,19 +102,19 @@ function clearPredictionDom() {
|
|
|
|
|
if (satDom.predCurrentList) satDom.predCurrentList.innerHTML = "";
|
|
|
|
|
if (satDom.predUpcomingList) satDom.predUpcomingList.innerHTML = "";
|
|
|
|
|
}
|
|
|
|
|
window.clearSatPredictionDom = clearPredictionDom;
|
|
|
|
|
satWindow.clearSatPredictionDom = clearPredictionDom;
|
|
|
|
|
|
|
|
|
|
satDom.viewLiveBtn?.addEventListener("click", () => switchSatView("live"));
|
|
|
|
|
satDom.viewHistoryBtn?.addEventListener("click", () => switchSatView("history"));
|
|
|
|
|
satDom.viewPredBtn?.addEventListener("click", () => switchSatView("predictions"));
|
|
|
|
|
satDom.viewLiveBtn?.addEventListener("click", () => { switchSatView("live"); });
|
|
|
|
|
satDom.viewHistoryBtn?.addEventListener("click", () => { switchSatView("history"); });
|
|
|
|
|
satDom.viewPredBtn?.addEventListener("click", () => { switchSatView("predictions"); });
|
|
|
|
|
|
|
|
|
|
// ── Live view: decoder state ────────────────────────────────────────
|
|
|
|
|
let _lastSatLrptOn = null;
|
|
|
|
|
window.updateSatLiveState = function (update) {
|
|
|
|
|
let lastSatLrptOn: boolean | null = null;
|
|
|
|
|
satWindow.updateSatLiveState = function (update: SatelliteLiveUpdate) {
|
|
|
|
|
if (!satDom.lrptState) return;
|
|
|
|
|
const lrptOn = !!update.lrpt_decode_enabled;
|
|
|
|
|
if (lrptOn !== _lastSatLrptOn) {
|
|
|
|
|
_lastSatLrptOn = lrptOn;
|
|
|
|
|
if (lrptOn !== lastSatLrptOn) {
|
|
|
|
|
lastSatLrptOn = lrptOn;
|
|
|
|
|
satDom.lrptState.textContent = lrptOn ? "Listening" : "Idle";
|
|
|
|
|
satDom.lrptState.className = "sat-live-value " + (lrptOn ? "sat-state-listening" : "sat-state-idle");
|
|
|
|
|
if (satDom.status) {
|
|
|
|
@@ -114,7 +136,7 @@ function renderSatLatestCard() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const img = satImageHistory[0];
|
|
|
|
|
const decoder = img._decoder || "unknown";
|
|
|
|
|
if (!img) return;
|
|
|
|
|
const typeName = "Meteor LRPT";
|
|
|
|
|
const satellite = img.satellite || "";
|
|
|
|
|
const channels = img.channels || img.channel_a || "";
|
|
|
|
@@ -123,7 +145,7 @@ function renderSatLatestCard() {
|
|
|
|
|
const ts = img._ts || "--";
|
|
|
|
|
const date = img._tsMs ? new Date(img._tsMs).toLocaleDateString() : "";
|
|
|
|
|
|
|
|
|
|
let meta = [typeName];
|
|
|
|
|
const meta = [typeName];
|
|
|
|
|
if (satellite) meta.push(satellite);
|
|
|
|
|
if (channels) meta.push(channels);
|
|
|
|
|
meta.push(`${lines} ${unit}`);
|
|
|
|
@@ -143,7 +165,7 @@ function renderSatLatestCard() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── History view: table ─────────────────────────────────────────────
|
|
|
|
|
function getSatFilteredHistory() {
|
|
|
|
|
function getSatFilteredHistory(): SatelliteImage[] {
|
|
|
|
|
let items = satImageHistory;
|
|
|
|
|
|
|
|
|
|
const typeVal = satDom.typeFilter ? satDom.typeFilter.value : "all";
|
|
|
|
@@ -168,11 +190,10 @@ function getSatFilteredHistory() {
|
|
|
|
|
return items;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function renderSatHistoryRow(img) {
|
|
|
|
|
function renderSatHistoryRow(img: SatelliteImage): HTMLElement {
|
|
|
|
|
const row = document.createElement("div");
|
|
|
|
|
row.className = "sat-history-row";
|
|
|
|
|
|
|
|
|
|
const decoder = img._decoder || "unknown";
|
|
|
|
|
const typeName = "Meteor LRPT";
|
|
|
|
|
const typeClass = "sat-type-lrpt";
|
|
|
|
|
const ts = img._ts || "--";
|
|
|
|
@@ -204,8 +225,8 @@ function renderSatHistoryTable() {
|
|
|
|
|
if (!satDom.historyList) return;
|
|
|
|
|
const items = getSatFilteredHistory();
|
|
|
|
|
const fragment = document.createDocumentFragment();
|
|
|
|
|
for (let i = 0; i < items.length; i += 1) {
|
|
|
|
|
fragment.appendChild(renderSatHistoryRow(items[i]));
|
|
|
|
|
for (const image of items) {
|
|
|
|
|
fragment.appendChild(renderSatHistoryRow(image));
|
|
|
|
|
}
|
|
|
|
|
satDom.historyList.replaceChildren(fragment);
|
|
|
|
|
|
|
|
|
@@ -222,7 +243,7 @@ function renderSatHistoryTable() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── Add image to history ────────────────────────────────────────────
|
|
|
|
|
function addSatImage(img, decoder) {
|
|
|
|
|
function addSatImage(img: SatelliteImage, decoder: "lrpt"): void {
|
|
|
|
|
const tsMs = Number.isFinite(img.ts_ms) ? Number(img.ts_ms) : Date.now();
|
|
|
|
|
img._tsMs = tsMs;
|
|
|
|
|
img._ts = new Date(tsMs).toLocaleTimeString([], {
|
|
|
|
@@ -237,102 +258,103 @@ function addSatImage(img, decoder) {
|
|
|
|
|
satImageHistory = satImageHistory.slice(0, SAT_MAX_IMAGES);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scheduleSatUi("sat-latest", () => renderSatLatestCard());
|
|
|
|
|
scheduleSatUi("sat-latest", () => { renderSatLatestCard(); });
|
|
|
|
|
if (satActiveView === "history") {
|
|
|
|
|
scheduleSatUi("sat-history", () => renderSatHistoryTable());
|
|
|
|
|
scheduleSatUi("sat-history", () => { renderSatHistoryTable(); });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── Server callbacks ────────────────────────────────────────────────
|
|
|
|
|
window.onServerLrptProgress = function (msg) {
|
|
|
|
|
if (satDom.status && msg.mcu_count > 0) {
|
|
|
|
|
satDom.status.textContent = "Receiving \u2014 " + msg.mcu_count + " MCU rows decoded";
|
|
|
|
|
satWindow.onServerLrptProgress = function (msg: LrptProgress) {
|
|
|
|
|
if (satDom.status && (msg.mcu_count ?? 0) > 0) {
|
|
|
|
|
satDom.status.textContent = `Receiving \u2014 ${String(msg.mcu_count ?? 0)} MCU rows decoded`;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
window.onServerLrptImage = function (msg) {
|
|
|
|
|
satWindow.onServerLrptImage = function (msg: SatelliteImage) {
|
|
|
|
|
if (satDom.status) satDom.status.textContent = "Image received (Meteor LRPT)";
|
|
|
|
|
addSatImage(msg, "lrpt");
|
|
|
|
|
if (msg.geo_bounds && msg.path && window.addSatMapOverlay) {
|
|
|
|
|
window.addSatMapOverlay(msg);
|
|
|
|
|
if (msg.geo_bounds && msg.path && satWindow.addSatMapOverlay) {
|
|
|
|
|
satWindow.addSatMapOverlay(msg);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
window.resetSatHistoryView = function () {
|
|
|
|
|
satWindow.resetSatHistoryView = function () {
|
|
|
|
|
satImageHistory = [];
|
|
|
|
|
if (satDom.historyList) satDom.historyList.innerHTML = "";
|
|
|
|
|
renderSatLatestCard();
|
|
|
|
|
renderSatHistoryTable();
|
|
|
|
|
if (window.clearSatMapOverlays) window.clearSatMapOverlays();
|
|
|
|
|
satWindow.clearSatMapOverlays?.();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
window.pruneSatHistoryView = function () {
|
|
|
|
|
satWindow.pruneSatHistoryView = function () {
|
|
|
|
|
renderSatHistoryTable();
|
|
|
|
|
renderSatLatestCard();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// ── Toggle buttons ──────────────────────────────────────────────────
|
|
|
|
|
const lrptDecodeToggleBtn = document.getElementById("lrpt-decode-toggle-btn");
|
|
|
|
|
lrptDecodeToggleBtn?.addEventListener("click", async () => {
|
|
|
|
|
lrptDecodeToggleBtn?.addEventListener("click", () => { void (async () => {
|
|
|
|
|
try {
|
|
|
|
|
await window.takeSchedulerControlForDecoderDisable?.(lrptDecodeToggleBtn);
|
|
|
|
|
await postPath("/toggle_lrpt_decode");
|
|
|
|
|
await satWindow.takeSchedulerControlForDecoderDisable?.(lrptDecodeToggleBtn);
|
|
|
|
|
await satWindow.postPath?.("/toggle_lrpt_decode");
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.error("LRPT toggle failed", e);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
})(); });
|
|
|
|
|
|
|
|
|
|
// ── Filter / sort event listeners ───────────────────────────────────
|
|
|
|
|
satDom.filterInput?.addEventListener("input", () => {
|
|
|
|
|
satFilterText = satDom.filterInput.value.trim().toUpperCase();
|
|
|
|
|
const satFilterInput = satDom.filterInput;
|
|
|
|
|
satFilterInput?.addEventListener("input", () => {
|
|
|
|
|
satFilterText = satFilterInput.value.trim().toUpperCase();
|
|
|
|
|
renderSatHistoryTable();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
satDom.sortSelect?.addEventListener("change", () => renderSatHistoryTable());
|
|
|
|
|
satDom.typeFilter?.addEventListener("change", () => renderSatHistoryTable());
|
|
|
|
|
satDom.sortSelect?.addEventListener("change", () => { renderSatHistoryTable(); });
|
|
|
|
|
satDom.typeFilter?.addEventListener("change", () => { renderSatHistoryTable(); });
|
|
|
|
|
|
|
|
|
|
// ── Settings: clear history ─────────────────────────────────────────
|
|
|
|
|
document
|
|
|
|
|
.getElementById("settings-clear-sat-history")
|
|
|
|
|
?.addEventListener("click", async () => {
|
|
|
|
|
if (!await window.trxUi.confirm({ title: "Clear satellite history?", message: "All stored satellite decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
|
|
|
|
?.addEventListener("click", () => { void (async () => {
|
|
|
|
|
if (!await satWindow.trxUi.confirm({ title: "Clear satellite history?", message: "All stored satellite decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
|
|
|
|
try {
|
|
|
|
|
await postPath("/clear_lrpt_decode");
|
|
|
|
|
window.resetSatHistoryView();
|
|
|
|
|
await satWindow.postPath?.("/clear_lrpt_decode");
|
|
|
|
|
satWindow.resetSatHistoryView?.();
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.error("Weather satellite history clear failed", e);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
})(); });
|
|
|
|
|
|
|
|
|
|
// ── Predictions: helpers ────────────────────────────────────────────
|
|
|
|
|
function azToCardinal(deg) {
|
|
|
|
|
function azToCardinal(deg: number): string {
|
|
|
|
|
const dirs = ["N", "NE", "E", "SE", "S", "SW", "W", "NW"];
|
|
|
|
|
return dirs[Math.round(deg / 45) % 8];
|
|
|
|
|
return dirs[Math.round(deg / 45) % 8] ?? "N";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatPredTime(ms) {
|
|
|
|
|
function formatPredTime(ms: number): string {
|
|
|
|
|
const d = new Date(ms);
|
|
|
|
|
const now = new Date();
|
|
|
|
|
const dayNames = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
|
|
|
|
|
const day = d.getUTCDay() !== now.getUTCDay() ? dayNames[d.getUTCDay()] + " " : "";
|
|
|
|
|
const day = d.getUTCDay() !== now.getUTCDay() ? `${dayNames[d.getUTCDay()] ?? ""} ` : "";
|
|
|
|
|
const hh = String(d.getUTCHours()).padStart(2, "0");
|
|
|
|
|
const mm = String(d.getUTCMinutes()).padStart(2, "0");
|
|
|
|
|
return `${day}${hh}:${mm}`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatPredDuration(s) {
|
|
|
|
|
function formatPredDuration(s: number): string {
|
|
|
|
|
if (s >= 60) return `${Math.round(s / 60)} min`;
|
|
|
|
|
return `${s}s`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatCountdown(ms) {
|
|
|
|
|
function formatCountdown(ms: number): string {
|
|
|
|
|
const totalSec = Math.max(0, Math.floor(ms / 1000));
|
|
|
|
|
const m = Math.floor(totalSec / 60);
|
|
|
|
|
const s = totalSec % 60;
|
|
|
|
|
return `${m}:${String(s).padStart(2, "0")}`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function elevationClass(deg) {
|
|
|
|
|
function elevationClass(deg: number): string {
|
|
|
|
|
if (deg >= 45) return "sat-pred-el-high";
|
|
|
|
|
if (deg >= 10) return "sat-pred-el-mid";
|
|
|
|
|
return "sat-pred-el-low";
|
|
|
|
@@ -346,8 +368,8 @@ function stopCountdownTimer() {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function startCountdownTimer(container) {
|
|
|
|
|
const countdownEls = container ? container.querySelectorAll(".sat-pred-col-countdown") : [];
|
|
|
|
|
function startCountdownTimer(container: HTMLElement | null): void {
|
|
|
|
|
const countdownEls = container?.querySelectorAll<HTMLElement>(".sat-pred-col-countdown") ?? [];
|
|
|
|
|
if (countdownEls.length === 0) return;
|
|
|
|
|
|
|
|
|
|
satPredCountdownTimer = setInterval(() => {
|
|
|
|
@@ -358,7 +380,7 @@ function startCountdownTimer(container) {
|
|
|
|
|
const n = Date.now();
|
|
|
|
|
let anyActive = false;
|
|
|
|
|
for (const el of countdownEls) {
|
|
|
|
|
const los = parseInt(el.dataset.los, 10);
|
|
|
|
|
const los = Number.parseInt(el.dataset.los ?? "0", 10);
|
|
|
|
|
const rem = los - n;
|
|
|
|
|
if (rem > 0) {
|
|
|
|
|
el.textContent = formatCountdown(rem);
|
|
|
|
@@ -375,7 +397,7 @@ function startCountdownTimer(container) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── Predictions: row builders ───────────────────────────────────────
|
|
|
|
|
function buildCurrentPassRow(pass, now) {
|
|
|
|
|
function buildCurrentPassRow(pass: SatellitePass, now: number): HTMLElement {
|
|
|
|
|
const row = document.createElement("div");
|
|
|
|
|
row.className = "sat-pred-row-current";
|
|
|
|
|
const dir = `${azToCardinal(pass.azimuth_aos_deg)} \u2192 ${azToCardinal(pass.azimuth_los_deg)}`;
|
|
|
|
@@ -391,7 +413,7 @@ function buildCurrentPassRow(pass, now) {
|
|
|
|
|
return row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function buildUpcomingPassRow(pass) {
|
|
|
|
|
function buildUpcomingPassRow(pass: SatellitePass): HTMLElement {
|
|
|
|
|
const row = document.createElement("div");
|
|
|
|
|
row.className = "sat-pred-row";
|
|
|
|
|
const dir = `${azToCardinal(pass.azimuth_aos_deg)} \u2192 ${azToCardinal(pass.azimuth_los_deg)}`;
|
|
|
|
@@ -406,7 +428,7 @@ function buildUpcomingPassRow(pass) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── Predictions: filter state ───────────────────────────────────────
|
|
|
|
|
function getFilteredPredictions() {
|
|
|
|
|
function getFilteredPredictions(): SatellitePass[] {
|
|
|
|
|
let items = satPredData;
|
|
|
|
|
if (satPredCategory !== "all") items = items.filter((p) => p.category === satPredCategory);
|
|
|
|
|
if (satPredMinEl > 0) items = items.filter((p) => p.max_elevation_deg >= satPredMinEl);
|
|
|
|
@@ -418,23 +440,26 @@ function applyPredFilters() {
|
|
|
|
|
renderSatPredictions(getFilteredPredictions());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
satDom.predFilter?.addEventListener("input", () => {
|
|
|
|
|
satPredFilterText = satDom.predFilter.value.trim().toUpperCase();
|
|
|
|
|
const satPredictionFilter = satDom.predFilter;
|
|
|
|
|
satPredictionFilter?.addEventListener("input", () => {
|
|
|
|
|
satPredFilterText = satPredictionFilter.value.trim().toUpperCase();
|
|
|
|
|
applyPredFilters();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
satDom.predMinEl?.addEventListener("change", () => {
|
|
|
|
|
satPredMinEl = parseInt(satDom.predMinEl.value, 10) || 0;
|
|
|
|
|
const satPredictionMinElevation = satDom.predMinEl;
|
|
|
|
|
satPredictionMinElevation?.addEventListener("change", () => {
|
|
|
|
|
satPredMinEl = Number.parseInt(satPredictionMinElevation.value, 10) || 0;
|
|
|
|
|
applyPredFilters();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
satDom.predCategory?.addEventListener("change", () => {
|
|
|
|
|
satPredCategory = satDom.predCategory.value;
|
|
|
|
|
const satPredictionCategory = satDom.predCategory;
|
|
|
|
|
satPredictionCategory?.addEventListener("change", () => {
|
|
|
|
|
satPredCategory = satPredictionCategory.value;
|
|
|
|
|
applyPredFilters();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// ── Predictions: main render ────────────────────────────────────────
|
|
|
|
|
function renderSatPredictions(passes, error) {
|
|
|
|
|
function renderSatPredictions(passes: SatellitePass[], error?: string): void {
|
|
|
|
|
stopCountdownTimer();
|
|
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
@@ -508,14 +533,14 @@ function renderSatPredictions(passes, error) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── Predictions: data loading ───────────────────────────────────────
|
|
|
|
|
async function loadSatPredictions() {
|
|
|
|
|
async function loadSatPredictions(): Promise<void> {
|
|
|
|
|
if (satDom.predStatus) satDom.predStatus.textContent = "Loading predictions\u2026";
|
|
|
|
|
if (satDom.predCurrentList) satDom.predCurrentList.innerHTML = "";
|
|
|
|
|
if (satDom.predUpcomingList) satDom.predUpcomingList.innerHTML = "";
|
|
|
|
|
try {
|
|
|
|
|
const resp = await fetch("/sat_passes");
|
|
|
|
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
|
|
|
|
const data = await resp.json();
|
|
|
|
|
const data = await resp.json() as SatellitePassResponse;
|
|
|
|
|
satPredSatCount = data.satellite_count || 0;
|
|
|
|
|
if (data.error) {
|
|
|
|
|
satPredData = [];
|
|
|
|
@@ -524,20 +549,20 @@ async function loadSatPredictions() {
|
|
|
|
|
satPredData = data.passes || [];
|
|
|
|
|
renderSatPredictions(getFilteredPredictions());
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
renderSatPredictions([], `Failed to load predictions: ${e.message}`);
|
|
|
|
|
} catch (error: unknown) {
|
|
|
|
|
renderSatPredictions([], `Failed to load predictions: ${error instanceof Error ? error.message : String(error)}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ── Navigate to map centered on satellite image bounds ──────────────
|
|
|
|
|
window.satShowOnMap = function (south, west, north, east) {
|
|
|
|
|
if (typeof window.enableMapSourceFilter === "function") {
|
|
|
|
|
window.enableMapSourceFilter("sat");
|
|
|
|
|
satWindow.satShowOnMap = function (south: number, west: number, north: number, east: number) {
|
|
|
|
|
if (typeof satWindow.enableMapSourceFilter === "function") {
|
|
|
|
|
satWindow.enableMapSourceFilter("sat");
|
|
|
|
|
}
|
|
|
|
|
const lat = (south + north) / 2;
|
|
|
|
|
const lon = (west + east) / 2;
|
|
|
|
|
if (window.navigateToAprsMap) {
|
|
|
|
|
window.navigateToAprsMap(lat, lon);
|
|
|
|
|
if (satWindow.navigateToAprsMap) {
|
|
|
|
|
satWindow.navigateToAprsMap(lat, lon);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|