Skip to main content

Product Requirements (PRD)

Executive Summary

Helio Ocean repurposes Helio's industrial IoT observability engine — heterogeneous data ingestion, normalization, AI-assisted analysis, and live visualization — for ocean plastic waste monitoring. The product gives marine researchers and coastal scientists a single, map-first view of where plastic waste enters and accumulates in coastal waters, fusing satellite detection with ground-truth reports that today live in disconnected silos.

This is a parallel pivot exploration: Helio continues selling to manufacturers while this proof of concept validates that the engine transfers. Nothing in this repository touches or depends on production Helio code.

Anchor use case: the Southern California coast — the LA River and San Gabriel River outlets into San Pedro Bay / Long Beach — with pre/post-storm comparison around the February 2024 atmospheric river events, when storm discharge produced documented debris plumes at both river mouths.


Problem & Opportunity

Ocean plastic monitoring data exists, but it is fragmented across incompatible silos:

SiloFormPain
Satellite imageryMulti-band rasters (Sentinel-2)Requires remote-sensing expertise to turn into debris detections
Agency surveys (NOAA MDMAP)Structured survey CSVsBeach-level, sparse in time, separate portal
Citizen science (Debris Tracker)Item logs + free-text notes + photosUnstructured, inconsistent taxonomy, no cross-referencing
Municipal stormwater recordsPDFs, CSVs, narrative reportsLocked in documents; rarely joined to outcomes at sea
Ocean currents/windModel output (Copernicus Marine)Needed for drift prediction, unused by field teams

No single tool answers the questions practitioners actually ask: Where is debris accumulating right now? Which detections are confirmed by ground truth? What did last week's storm push out of the river mouths? Where should the cleanup crew go first?

This is the same problem shape Helio already solves for factories: pool inconsistent streams from many sources into one normalized visibility layer, add an intelligence layer on top, and expose it through live dashboards and natural-language queries.

Why Helio's Engine Transfers

Helio (manufacturing)Helio Ocean (this POC)
Machine sensor streams (MQTT/API)Satellite passes via STAC API
Maintenance logs & operator notesCitizen-science reports with free-text notes
Inconsistent vendor CSV/PDF exportsAgency survey CSVs, municipal stormwater PDFs
Normalization into unified telemetry schemaNormalization into unified observation schema
Anomaly detection on machine metricsFDI-based debris detection on spectral bands
Cross-referencing alarms against work ordersCross-referencing satellite detections against ground truth
LangGraph agents + chat over machine dataNL query interface + auto-generated briefings
Factory dashboardMap-first coastal dashboard

Users

Primary users (MVP is built for them):

  • Marine debris researchers — study debris flux, sources, and accumulation dynamics; need fused satellite + ground datasets they can interrogate and export.
  • Coastal / environmental scientists (agencies, universities, consultancies) — monitor specific coastal segments; need post-event situational awareness and defensible evidence of where debris went.

Downstream beneficiaries (post-MVP):

  • Coastal municipalities — prioritize post-storm cleanup spend and MS4 permit reporting.
  • Port authorities — situational awareness for harbor debris hazards.
  • Cleanup NGOs — dispatch volunteers to confirmed accumulation zones instead of guessing.

Product Vision

A map-first web application: the map is the home screen, everything else hangs off it.

  1. See waste inputs (river outlets, reported dumping) and accumulation (detected/confirmed zones) over time.
  2. Drill into a region and a time window — e.g., Long Beach the week after a storm.
  3. Distinguish confirmed accumulation zones (satellite + ground truth agree) from suspected ones (satellite-only) and reported ones (ground-only).
  4. Ask questions in plain language and get answers grounded in the normalized data.
  5. Receive auto-generated post-event briefings.

Data Sources

#SourceAccessTypeMVP
1Sentinel-2 L2A imageryElement84 earth-search STAC (public, no credentials)Raster, 10–20 m
2NOAA Marine Debris Program / MDMAPSurvey export CSVStructured
3Debris Tracker citizen reportsExport CSV with free-text notesSemi/unstructured
4Municipal stormwater / discharge recordsPDFs, CSVs, narrative reportsUnstructuredPost-MVP
5Copernicus Marine currents & windCopernicus Marine Service APIModel outputPost-MVP

Notes:

  • The Copernicus Data Space API remains the strategic source for Sentinel-2; the POC uses the public earth-search mirror of the same L2A scenes to avoid credential gating. The ingestion adapter interface (FS-1) keeps a slot for a CDSE adapter.
  • MARIDA (Marine Debris Archive) is the open labeled Sentinel-2 dataset for marine debris; it is referenced as the training corpus for a future ML classifier that would replace the rule-based FDI thresholding (post-MVP).
  • Where a live pull requires an account or data request the POC ships clearly-labeled fixtures in the source's exact export format, and the ingestion adapter treats live and fixture data identically.

System Architecture

Mapping to Helio production for a real pivot: the FastAPI service maps to Helio's Lambda/ECS APIs, the map frontend maps to the Next.js helio-frontend pattern, the NL query layer maps to helio-api-chat's LangGraph/Bedrock architecture (supervisor → per-source agents → synthesizer), and SQLite maps to the production data store. The POC keeps everything in one process on purpose.

Intelligence Layer

  1. Normalize — every source lands in one Observation schema (source, timestamps, geometry, debris attributes, confidence, full raw payload retained for provenance).
  2. Extract — unstructured inputs (citizen report notes; later, municipal PDFs) are parsed into structured debris records; ambiguous extractions are flagged, never silently guessed.
  3. Cross-reference — satellite detections are joined against ground observations in space and time to classify accumulation zones as confirmed (satellite + ground agree), suspected (satellite only), or reported (ground only).
  4. Query — a natural-language interface (Claude via AWS Bedrock, tool-use over the normalized store) answers questions with data-grounded citations; degrades to a labeled offline mode without credentials.
  5. Brief — auto-generated post-event briefings summarize detections, zones, and ground-truth activity for a region and time window.

MVP Scope (POC)

In: Sentinel-2 FDI detection for the SoCal AOI over pre/post-storm windows (Jan/Feb 2024); NOAA MDMAP + Debris Tracker ingestion; normalization pipeline into SQLite/GeoJSON; zone classification; live MapLibre map with confirmed/suspected/reported zones and a time toggle; NL query interface; one auto-generated post-storm briefing.

Non-goals for the POC: user accounts/auth, multi-region support, drift modeling, ML classifier (FDI thresholding only), municipal PDF extraction, alerting/notifications, cloud deployment, mobile. Each is specced in the roadmap backlog instead.

Success Criteria

The POC succeeds if a 10-minute demo shows, live and unfaked:

  1. Real Sentinel-2 scenes for the AOI pulled from the public STAC API and scored with FDI (SC-1).
  2. Ground observations from two sources normalized into one schema with provenance intact (SC-2).
  3. The map distinguishing confirmed vs. suspected zones, changing between pre- and post-storm windows (SC-3).
  4. A natural-language question answered from the normalized data (SC-4).
  5. A generated post-storm briefing (SC-5).
  6. A traceability matrix connecting every feature spec to code and passing tests (SC-6).

Risks

RiskImpactMitigation
FDI false positives (whitecaps, sun glint, ships, foam)Misleading "suspected" zonesConservative thresholds; NDWI water mask; zones only confirmed with ground truth; MARIDA-trained classifier post-MVP
Cloud cover over post-storm scenesMissing detectionsConfigurable cloud filter; select best scene per window
Debris Tracker / MDMAP bulk exports need accountsFixture fallback in POCAdapters read the exact export formats so real files drop in with zero code change
10–20 m resolution vs. small debris patchesUnder-detectionFrame detections as accumulation indicators, not item counts
Pivot distracts from manufacturing revenueBusiness riskBackground workstream; isolated repo; no production coupling

Requirements Index

IDRequirementDetailed in
PRD-R1Ingest Sentinel-2 L2A and compute FDI debris detections for an AOI/time windowFS-1
PRD-R2Ingest NOAA MDMAP shoreline survey dataFS-2
PRD-R3Ingest Debris Tracker citizen reports incl. free-text extractionFS-3
PRD-R4Normalize all sources into one observation schema with provenanceFS-4
PRD-R5Classify accumulation zones: confirmed / suspected / reportedFS-5
PRD-R6Map-first UI with zone layers and pre/post-storm time toggleFS-6
PRD-R7Natural-language query over normalized data (Bedrock, offline fallback)FS-7
PRD-R8Auto-generated post-event briefingFS-8