Top20CountyCityTaxData
This dataset contains population, property tax rate and income tax rate for the top 20 cities in Indiana by population minus Indianapolis and Ft. Wayne.
Population information came from Wikipedia: https://en.wikipedia.org/wiki/List_of_cities_in_Indiana
Property tax rate information came from:
https://www.stats.indiana.edu/dms4/propertytaxes.asp
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 \"bloomington-in-gov/top20countycitytaxdata-wqr2-kk8j\".\"top20countycitytaxdata\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.