Water Quality Index Scores
The water quality index provides a single number (like a grade) that expresses overall water quality.
Each month Water Quality Specialists measure 8 water quality parameters at 53 streams. The parameters are temperature, dissolved oxygen, bacteria (fecal coliform), total nitrogen, total phosphorus, pH, total suspended sediment, and turbidity.
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"internal-open-piercecountywa-gov/water-quality-index-scores-8d3y-aswx\".\"water_quality_index_scores\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.