Waste Water Treatment Tools
Query waste water treatment (WWT) records — treatment types, discharge parameters, flow volumes, and associated CO2e emissions. Covers Scope 1 emissions from wastewater processing.Waste water treatment tools require a facility_id. Call
list_facilities first to get one. Records are scoped to a single facility.list_waste_water_treatments
List waste water treatment records for a facility with enriched data (co2e, user, linked projects). Paginated.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
facility_id | string | Yes | — | Facility UUID. Call list_facilities first |
start_date | string | No | — | Filter from date (YYYY-MM-DD) |
end_date | string | No | — | Filter to date (YYYY-MM-DD) |
status | string[] | No | — | Filter by record status (e.g. ["active"]) |
co2e_status | string | No | — | Filter: calculated or not_calculated |
project_id | string | No | — | Filter by project UUID |
sort | string | No | — | Sort field, prefix - for desc (e.g. -start_date) |
page | integer | No | 1 | Page number |
size | integer | No | 50 | Items per page (max 200) |
organization_id | string | No | default org | Organization UUID |
| Field | Description |
|---|---|
treatment_type | Type of wastewater treatment (e.g. aerobic, anaerobic, lagoon) |
flow_volume_m3 | Volume of wastewater treated in cubic meters |
population_equivalent | Population equivalent served by the treatment plant |
co2e | Calculated CO2-equivalent emissions in tonnes |
co2e_status | Whether emissions have been calculated: calculated or not_calculated |
get_waste_water_treatment
Get full detail for a waste water treatment record — treatment type, flow volumes, discharge parameters, co2e breakdown, user info, and linked projects.
Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
wwt_id | string | Yes | — | WWT record UUID |
organization_id | string | No | default org | Organization UUID |
| Field | Description |
|---|---|
discharge_bod | Biochemical oxygen demand of discharge (mg/L) |
discharge_cod | Chemical oxygen demand of discharge (mg/L) |
sludge_quantity_tonnes | Quantity of sludge produced in tonnes |
co2e_breakdown | Emissions split by sub-category (discharge, sludge, population, water) |
linked_projects | Projects this record is associated with |
Workflow
A typical workflow for analyzing waste water treatment data:list_facilities— find the facility with wastewater operationslist_waste_water_treatments— list WWT records for that facility, filtering by date or statusget_waste_water_treatment— inspect a specific record’s co2e breakdownget_greenhouse_gas_emissionswithcategory="waste_water_treatment_*"— see validated emissions across all WWT sub-categories
Waste water treatment emissions are split into four GHG categories:
waste_water_treatment_discharge, waste_water_treatment_population, waste_water_treatment_sludge, and waste_water_treatment_water. Use get_greenhouse_gas_emissions with a specific category to query validated totals.Related
Emissions Tools
Query validated GHG emissions across all categories
Facilities Tools
List and manage facilities