Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions plugins.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "1.0.0",
"last_updated": "2026-07-08",
"last_updated": "2026-07-09",
"plugins": [
{
"id": "7-segment-clock",
Expand Down Expand Up @@ -365,7 +365,7 @@
{
"id": "ledmatrix-flights",
"name": "Flight Tracker",
"description": "Real-time aircraft tracking with ADS-B/FlightRadar24/OpenSky/adsb.fi/adsb.lol data, map backgrounds, area mode, flight tracking, anchor airport, and flight records",
"description": "Real-time aircraft tracking with ADS-B/FlightRadar24/OpenSky/adsb.fi/adsb.lol data, map backgrounds, area mode, flight tracking, anchor airport, flight records, and optional airport weather (METAR/TAF/PIREP/SIGMET via the free NOAA Aviation Weather Center API)",
"author": "ChuckBuilds",
"category": "custom",
"tags": [
Expand All @@ -374,17 +374,20 @@
"ads-b",
"skyaware",
"aviation",
"map"
"map",
"metar",
"taf",
"weather"
],
"repo": "https://github.com/ChuckBuilds/ledmatrix-plugins",
"branch": "main",
"plugin_path": "plugins/ledmatrix-flights",
"stars": 0,
"downloads": 0,
"last_updated": "2026-06-15",
"last_updated": "2026-07-09",
"verified": true,
"screenshot": "",
"latest_version": "1.10.0"
"latest_version": "1.12.2"
},
{
"id": "march-madness",
Expand Down
62 changes: 62 additions & 0 deletions plugins/ledmatrix-flights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Real-time aircraft tracking plugin for LEDMatrix with ADS-B data, map background
- **Proximity Alerts**: Live priority mode when aircraft are nearby
- **Trail Rendering**: Visual trails showing aircraft movement paths
- **Altitude Color Coding**: Color-coded aircraft based on altitude (standard aviation scale)
- **Airport Weather (optional)**: METAR/TAF/PIREP/SIGMET for airports you choose, from the free NOAA Aviation Weather Center API — no API key required

## Installation

Expand Down Expand Up @@ -140,6 +141,67 @@ Automatically switches:
- Uses **overhead** mode when proximity alert is triggered
- Uses **stats** mode otherwise

## Airport Weather (METAR/TAF/PIREP/SIGMET)

An optional add-on for pilots: show aviation weather for airports you choose,
using the **free NOAA Aviation Weather Center API** (`aviationweather.gov`) — no
API key or account needed.

It adds a new **`metar`** rotation view that cycles through, for each configured
airport:

- **Decoded METAR card** — airport identifier, a color-coded flight-category
badge (**VFR** green, **MVFR** blue, **IFR** red, **LIFR** magenta), plus wind,
visibility, present weather, ceiling/clouds, temperature/dewpoint, and altimeter.
It also shows the **observation age** (e.g. `14m`); if the report is stale
(older than ~75 min, i.e. a likely missed hourly update) the age turns amber
with a `!` so you never read old weather as current.
- **Raw METAR page** — the raw observation as filed (toggle with `show_raw`).
- **TAF page** — the terminal forecast (toggle with `show_taf`).
- **PIREP page** — recent pilot reports near the airport (toggle with `show_pirep`).
- **SIGMET/AIRMET page** — active advisories (toggle with `show_sigmet`; these are
region-based, not airport-specific).

> NOTAMs are **not** included — they require separate FAA API credentials
> (OAuth), unlike the key-free weather endpoints above.

### Enabling it

1. Set `metar.enabled` to `true` and list your airports in `metar.airports`
(ICAO like `KTPA`, or IATA like `TPA`).
2. Add `"metar"` to **Rotation Views** so it appears in the rotation.

```json
{
"enabled": true,
"rotation_views": ["map", "stats", "metar"],
"metar": {
"enabled": true,
"airports": ["KTPA", "KJFK"],
"show_taf": true,
"show_raw": true,
"show_pirep": false,
"show_sigmet": false,
"update_interval_minutes": 10,
"page_duration_seconds": 8,
"altimeter_unit": "inhg",
"temp_unit": "c",
"wind_unit": "kt",
"visibility_unit": "sm"
}
}
```

**Units** default to the US convention (`A30.01` inHg, statute miles, knots, °C).
For international style set `altimeter_unit` to `hpa` (shows `Q1013`) and
`visibility_unit` to `m` or `km`; `temp_unit` also accepts `f`, and `wind_unit`
accepts `mph`, `kmh`, or `ms`.

Weather is fetched on its own slow cadence (default every 10 minutes; METARs
update roughly hourly), cached, and served stale on any network hiccup. The
refresh is serviced one request per update cycle, so it never stalls the
aircraft display loop.

## Requirements

- Python 3.7+
Expand Down
Loading
Loading