screentinker/Examples/PIP-USD-Cap-Alert-Monitor-NOAA/fixture-noaa.json
ScreenTinker ab771ec595 Add PiP overlay example recipes
Self-contained examples for the PiP overlay API (POST /api/pip), each
with a CSP-safe query-param overlay (external JS), config.example.json,
zero runtime deps, an offline test, and a README:

- PIP-Announce-Broadcast    manual one-shot message to a screen/group
- PIP-Weather-Widget        Open-Meteo current conditions (keyless)
- PIP-Air-Quality           Open-Meteo US AQI widget (keyless)
- PIP-Crypto-Ticker         CoinGecko price strip (keyless)
- PIP-News-Ticker           scrolling RSS/Atom headlines
- PIP-Room-Status-Calendar  ICS-driven Available/Busy room sign
- PIP-Event-Countdown       client-side countdown, auto-clears at zero
- PIP-Welcome-Board         rotating welcome/birthday cards from CSV
- PIP-Fundraiser-Thermometer goal-progress bar from local/URL JSON
- PIP-QR-Rotator            rotating QR codes, encoded client-side
- PIP-Incident-Webhook      event-driven: red on firing, clear on resolved

Also includes the CAP-AU (NSW RFS) and US NWS/NOAA emergency-alert
monitors that push expiry-aware PiP overlays.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-18 20:17:38 -05:00

91 lines
2.7 KiB
JSON

{
"type": "FeatureCollection",
"title": "Fixture: NWS active alerts (offline test for noaa-parse)",
"features": [
{
"id": "NWS-TEST-TORNADO-1",
"type": "Feature",
"geometry": null,
"properties": {
"id": "NWS-TEST-TORNADO-1",
"event": "Tornado Warning",
"severity": "Extreme",
"urgency": "Immediate",
"certainty": "Observed",
"messageType": "Alert",
"status": "Actual",
"sent": "2026-06-18T10:00:00-05:00",
"effective": "2026-06-18T10:00:00-05:00",
"expires": "2026-06-18T10:01:00-05:00",
"headline": "Tornado Warning issued June 18 at 10:00AM CDT",
"areaDesc": "Test County, ST",
"senderName": "NWS Test Office",
"response": "Shelter"
}
},
{
"id": "NWS-TEST-WINTER-3",
"type": "Feature",
"geometry": null,
"properties": {
"id": "NWS-TEST-WINTER-3",
"event": "Winter Storm Warning",
"severity": "Severe",
"urgency": "Expected",
"certainty": "Likely",
"messageType": "Alert",
"status": "Actual",
"sent": "2026-06-18T09:30:00-05:00",
"effective": "2026-06-18T09:30:00-05:00",
"expires": "2026-06-18T20:00:00-05:00",
"headline": "Winter Storm Warning in effect",
"areaDesc": "Test County, ST",
"senderName": "NWS Test Office",
"response": "Prepare"
}
},
{
"id": "NWS-TEST-FLOOD-2",
"type": "Feature",
"geometry": null,
"properties": {
"id": "NWS-TEST-FLOOD-2",
"event": "Flood Advisory",
"severity": "Minor",
"urgency": "Expected",
"certainty": "Likely",
"messageType": "Alert",
"status": "Actual",
"sent": "2026-06-18T09:45:00-05:00",
"effective": "2026-06-18T09:45:00-05:00",
"expires": "2026-06-18T20:00:00-05:00",
"headline": "Flood Advisory in effect",
"areaDesc": "Test County, ST",
"senderName": "NWS Test Office",
"response": "Avoid"
}
},
{
"id": "NWS-TEST-CANCEL-4",
"type": "Feature",
"geometry": null,
"properties": {
"id": "NWS-TEST-CANCEL-4",
"event": "Severe Thunderstorm Warning",
"severity": "Severe",
"urgency": "Immediate",
"certainty": "Observed",
"messageType": "Cancel",
"status": "Actual",
"sent": "2026-06-18T09:55:00-05:00",
"effective": "2026-06-18T09:55:00-05:00",
"expires": "2026-06-18T20:00:00-05:00",
"headline": "Severe Thunderstorm Warning cancelled",
"areaDesc": "Test County, ST",
"senderName": "NWS Test Office",
"response": "AllClear"
}
}
]
}