Number of Extreme Heat Days, 2020
This dataset describes the number of days Tennessee counties exceeded 95F, both in actual temperature and in the heat index, in 2020.
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 \"healthdata-tn-gov/number-of-extreme-heat-days-2020-ms4f-f4hs\".\"number_of_extreme_heat_days_2020\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.