From 886687b8dc03f479a6479313525c57a6b8db6c00 Mon Sep 17 00:00:00 2001 From: jross Date: Thu, 25 Jun 2026 10:30:10 -0600 Subject: [PATCH] Add TDS data products: summary + latest value Two new ogc_summary products over the tds parameter (all NM sources): - nm_tds_summary: TDS concentration summary stats - nm_tds_latest: most recent TDS value per site Both materialize via the existing build_product_assets graph; definitions load with 6 products / 6 schedules. Co-Authored-By: Claude Opus 4.8 --- orchestration/config/products.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/orchestration/config/products.yaml b/orchestration/config/products.yaml index 829eaf3..d9b084b 100644 --- a/orchestration/config/products.yaml +++ b/orchestration/config/products.yaml @@ -44,3 +44,25 @@ products: state: NM sources: exclude: [] + + - id: nm_tds_summary + parameter: tds + output_type: ogc_summary + title: "NM TDS Summary" + description: "TDS concentration summary stats, all NM sources" + schedule: "0 10 * * *" + spatial_filter: + state: NM + sources: + exclude: [] + + - id: nm_tds_latest + parameter: tds + output_type: ogc_summary + title: "NM Latest TDS Value" + description: "Most recent TDS value per site, all NM sources" + schedule: "0 11 * * *" + spatial_filter: + state: NM + sources: + exclude: []