d26ef6ca81
Rename the crate from trx-noaa to trx-wxsat (weather satellite) across the entire workspace. Add full NOAA satellite decode support: - Telemetry frame parsing: extract 16-wedge calibration data from the 128-line telemetry frames embedded in APT lines - Radiometric calibration: piecewise-linear LUT built from wedges 1-8 to correct pixel values against known reference levels - Channel identification: detect AVHRR sensor channels (VIS, NIR, MIR, TIR) from wedge 9 values per APT sub-channel - Satellite identification: heuristic NOAA-15/18/19 detection from channel A/B sensor pairings - Histogram equalisation: per-channel contrast enhancement for improved image output - WxsatImage now carries satellite name and channel labels in decoded message broadcasts https://claude.ai/code/session_01JA13DHuzuHUL4nSBBRU83f Signed-off-by: Claude <noreply@anthropic.com>
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
# SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
[workspace]
|
|
members = [
|
|
"src/decoders/trx-ais",
|
|
"src/decoders/trx-wxsat",
|
|
"src/decoders/trx-aprs",
|
|
"src/decoders/trx-cw",
|
|
"src/decoders/trx-decode-log",
|
|
"src/decoders/trx-ftx",
|
|
"src/decoders/trx-rds",
|
|
"src/decoders/trx-vdes",
|
|
"src/decoders/trx-wspr",
|
|
"src/trx-core",
|
|
"src/trx-protocol",
|
|
"src/trx-app",
|
|
"src/trx-reporting",
|
|
"src/trx-server",
|
|
"src/trx-server/trx-backend",
|
|
"src/trx-server/trx-backend/trx-backend-ft817",
|
|
"src/trx-server/trx-backend/trx-backend-ft450d",
|
|
"src/trx-server/trx-backend/trx-backend-soapysdr",
|
|
"src/trx-client",
|
|
"src/trx-client/trx-frontend",
|
|
"src/trx-client/trx-frontend/trx-frontend-http",
|
|
"src/trx-client/trx-frontend/trx-frontend-http-json",
|
|
"src/trx-client/trx-frontend/trx-frontend-rigctl",
|
|
"src/trx-configurator",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
|
|
[workspace.dependencies]
|
|
flate2 = "1"
|
|
tokio = "1"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
tokio-serial = "5"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
clap = "4"
|