mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 06:40:00 -07:00
New module for receiving and decoding weather satellite images using SatDump CLI. Supports NOAA-15/18/19 (APT) and Meteor-M2-3 (LRPT) with live SDR capture, pass prediction, and image gallery. Backend: - utils/weather_sat.py: SatDump process manager with image watcher - routes/weather_sat.py: API endpoints (start/stop/images/passes/stream) - SSE streaming for real-time capture progress - Pass prediction using existing skyfield + TLE data - SDR device registry integration (prevents conflicts) Frontend: - Sidebar panel with satellite selector and antenna build guide (V-dipole and QFH instructions for 137 MHz reception) - Stats strip with status, frequency, mode, location inputs - Split-panel layout: upcoming passes list + decoded image gallery - Full-size image modal viewer - SSE-driven progress updates during capture Infrastructure: - Dockerfile: Add SatDump build from source (headless CLI mode) with runtime deps (libpng, libtiff, libjemalloc, libvolk2, libnng) - Config: WEATHER_SAT_GAIN, SAMPLE_RATE, MIN_ELEVATION, PREDICTION_HOURS - Nav: Weather Sat entry in Space group (desktop + mobile) https://claude.ai/code/session_01FjLTkyELaqh27U1wEXngFQ
513 lines
11 KiB
CSS
513 lines
11 KiB
CSS
/* Weather Satellite Mode Styles */
|
|
|
|
/* ===== Stats Strip ===== */
|
|
.wxsat-stats-strip {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 8px 16px;
|
|
background: var(--bg-tertiary, #1a1f2e);
|
|
border-bottom: 1px solid var(--border-color, #2a3040);
|
|
flex-wrap: wrap;
|
|
min-height: 44px;
|
|
}
|
|
|
|
.wxsat-strip-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.wxsat-strip-status {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.wxsat-strip-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--text-dim, #666);
|
|
}
|
|
|
|
.wxsat-strip-dot.capturing {
|
|
background: #00ff88;
|
|
animation: wxsat-pulse 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
.wxsat-strip-dot.decoding {
|
|
background: #00d4ff;
|
|
animation: wxsat-pulse 0.8s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes wxsat-pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.4; }
|
|
}
|
|
|
|
.wxsat-strip-status-text {
|
|
font-size: 12px;
|
|
color: var(--text-secondary, #999);
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-strip-btn {
|
|
padding: 4px 12px;
|
|
border: 1px solid var(--border-color, #2a3040);
|
|
border-radius: 4px;
|
|
background: transparent;
|
|
color: var(--text-primary, #e0e0e0);
|
|
font-size: 11px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.wxsat-strip-btn:hover {
|
|
background: var(--bg-hover, #252a3a);
|
|
border-color: var(--accent-cyan, #00d4ff);
|
|
}
|
|
|
|
.wxsat-strip-btn.stop {
|
|
border-color: #ff4444;
|
|
color: #ff4444;
|
|
}
|
|
|
|
.wxsat-strip-btn.stop:hover {
|
|
background: rgba(255, 68, 68, 0.1);
|
|
}
|
|
|
|
.wxsat-strip-divider {
|
|
width: 1px;
|
|
height: 24px;
|
|
background: var(--border-color, #2a3040);
|
|
}
|
|
|
|
.wxsat-strip-stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.wxsat-strip-value {
|
|
font-size: 13px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
color: var(--text-primary, #e0e0e0);
|
|
}
|
|
|
|
.wxsat-strip-label {
|
|
font-size: 9px;
|
|
color: var(--text-dim, #666);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.wxsat-strip-value.accent-cyan {
|
|
color: var(--accent-cyan, #00d4ff);
|
|
}
|
|
|
|
/* ===== Location inputs in strip ===== */
|
|
.wxsat-strip-location {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.wxsat-loc-input {
|
|
width: 72px;
|
|
padding: 3px 6px;
|
|
background: var(--bg-primary, #0d1117);
|
|
border: 1px solid var(--border-color, #2a3040);
|
|
border-radius: 3px;
|
|
color: var(--text-primary, #e0e0e0);
|
|
font-size: 11px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-loc-input:focus {
|
|
border-color: var(--accent-cyan, #00d4ff);
|
|
outline: none;
|
|
}
|
|
|
|
/* ===== Main Layout ===== */
|
|
.wxsat-visuals-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
width: 100%;
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
.wxsat-content {
|
|
display: flex;
|
|
gap: 16px;
|
|
padding: 16px;
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
/* ===== Pass Predictions Panel ===== */
|
|
.wxsat-passes-panel {
|
|
flex: 0 0 320px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
background: var(--bg-secondary, #141820);
|
|
border: 1px solid var(--border-color, #2a3040);
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wxsat-passes-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 10px 14px;
|
|
background: var(--bg-tertiary, #1a1f2e);
|
|
border-bottom: 1px solid var(--border-color, #2a3040);
|
|
}
|
|
|
|
.wxsat-passes-title {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #e0e0e0);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.wxsat-passes-count {
|
|
font-size: 11px;
|
|
color: var(--accent-cyan, #00d4ff);
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-passes-list {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 8px;
|
|
}
|
|
|
|
.wxsat-pass-card {
|
|
padding: 10px 12px;
|
|
margin-bottom: 6px;
|
|
background: var(--bg-primary, #0d1117);
|
|
border: 1px solid var(--border-color, #2a3040);
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.wxsat-pass-card:hover {
|
|
border-color: var(--accent-cyan, #00d4ff);
|
|
background: var(--bg-hover, #252a3a);
|
|
}
|
|
|
|
.wxsat-pass-card.active {
|
|
border-color: #00ff88;
|
|
background: rgba(0, 255, 136, 0.05);
|
|
}
|
|
|
|
.wxsat-pass-sat {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wxsat-pass-sat-name {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #e0e0e0);
|
|
}
|
|
|
|
.wxsat-pass-mode {
|
|
font-size: 10px;
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-pass-mode.apt {
|
|
background: rgba(0, 212, 255, 0.15);
|
|
color: #00d4ff;
|
|
}
|
|
|
|
.wxsat-pass-mode.lrpt {
|
|
background: rgba(0, 255, 136, 0.15);
|
|
color: #00ff88;
|
|
}
|
|
|
|
.wxsat-pass-details {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4px;
|
|
font-size: 11px;
|
|
color: var(--text-dim, #666);
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-pass-detail-label {
|
|
color: var(--text-dim, #666);
|
|
}
|
|
|
|
.wxsat-pass-detail-value {
|
|
color: var(--text-secondary, #999);
|
|
text-align: right;
|
|
}
|
|
|
|
.wxsat-pass-quality {
|
|
display: inline-block;
|
|
font-size: 10px;
|
|
padding: 1px 6px;
|
|
border-radius: 3px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.wxsat-pass-quality.excellent {
|
|
background: rgba(0, 255, 136, 0.15);
|
|
color: #00ff88;
|
|
}
|
|
|
|
.wxsat-pass-quality.good {
|
|
background: rgba(0, 212, 255, 0.15);
|
|
color: #00d4ff;
|
|
}
|
|
|
|
.wxsat-pass-quality.fair {
|
|
background: rgba(255, 187, 0, 0.15);
|
|
color: #ffbb00;
|
|
}
|
|
|
|
/* ===== Image Gallery Panel ===== */
|
|
.wxsat-gallery-panel {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
background: var(--bg-secondary, #141820);
|
|
border: 1px solid var(--border-color, #2a3040);
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
min-width: 0;
|
|
}
|
|
|
|
.wxsat-gallery-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 10px 14px;
|
|
background: var(--bg-tertiary, #1a1f2e);
|
|
border-bottom: 1px solid var(--border-color, #2a3040);
|
|
}
|
|
|
|
.wxsat-gallery-title {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #e0e0e0);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.wxsat-gallery-count {
|
|
font-size: 11px;
|
|
color: var(--accent-cyan, #00d4ff);
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-gallery-grid {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 12px;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
gap: 12px;
|
|
align-content: start;
|
|
}
|
|
|
|
.wxsat-image-card {
|
|
background: var(--bg-primary, #0d1117);
|
|
border: 1px solid var(--border-color, #2a3040);
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.wxsat-image-card:hover {
|
|
border-color: var(--accent-cyan, #00d4ff);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.wxsat-image-preview {
|
|
width: 100%;
|
|
aspect-ratio: 4/3;
|
|
object-fit: cover;
|
|
display: block;
|
|
background: var(--bg-tertiary, #1a1f2e);
|
|
}
|
|
|
|
.wxsat-image-info {
|
|
padding: 8px 10px;
|
|
border-top: 1px solid var(--border-color, #2a3040);
|
|
}
|
|
|
|
.wxsat-image-sat {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #e0e0e0);
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.wxsat-image-product {
|
|
font-size: 10px;
|
|
color: var(--accent-cyan, #00d4ff);
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-image-timestamp {
|
|
font-size: 10px;
|
|
color: var(--text-dim, #666);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
/* Empty state */
|
|
.wxsat-gallery-empty {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 40px 20px;
|
|
color: var(--text-dim, #666);
|
|
text-align: center;
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.wxsat-gallery-empty svg {
|
|
width: 48px;
|
|
height: 48px;
|
|
margin-bottom: 12px;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.wxsat-gallery-empty p {
|
|
font-size: 12px;
|
|
margin: 0;
|
|
}
|
|
|
|
/* ===== Capture Progress ===== */
|
|
.wxsat-capture-status {
|
|
padding: 12px 16px;
|
|
background: var(--bg-tertiary, #1a1f2e);
|
|
border-bottom: 1px solid var(--border-color, #2a3040);
|
|
display: none;
|
|
}
|
|
|
|
.wxsat-capture-status.active {
|
|
display: block;
|
|
}
|
|
|
|
.wxsat-capture-info {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.wxsat-capture-message {
|
|
font-size: 11px;
|
|
color: var(--text-secondary, #999);
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-capture-elapsed {
|
|
font-size: 11px;
|
|
color: var(--text-dim, #666);
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
.wxsat-progress-bar {
|
|
height: 3px;
|
|
background: var(--bg-primary, #0d1117);
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wxsat-progress-bar .progress {
|
|
height: 100%;
|
|
background: var(--accent-cyan, #00d4ff);
|
|
border-radius: 2px;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
/* ===== Image Modal ===== */
|
|
.wxsat-image-modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.9);
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 10000;
|
|
padding: 20px;
|
|
}
|
|
|
|
.wxsat-image-modal.show {
|
|
display: flex;
|
|
}
|
|
|
|
.wxsat-image-modal img {
|
|
max-width: 95%;
|
|
max-height: 95vh;
|
|
border-radius: 4px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.wxsat-modal-close {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 24px;
|
|
background: none;
|
|
border: none;
|
|
color: white;
|
|
font-size: 32px;
|
|
cursor: pointer;
|
|
z-index: 10001;
|
|
}
|
|
|
|
.wxsat-modal-info {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: rgba(0, 0, 0, 0.8);
|
|
padding: 8px 16px;
|
|
border-radius: 4px;
|
|
color: var(--text-secondary, #999);
|
|
font-size: 12px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
text-align: center;
|
|
}
|
|
|
|
/* ===== Responsive ===== */
|
|
@media (max-width: 900px) {
|
|
.wxsat-content {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.wxsat-passes-panel {
|
|
flex: none;
|
|
max-height: 300px;
|
|
}
|
|
|
|
.wxsat-gallery-grid {
|
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
|
}
|
|
}
|