Annual Crime Incidents in Atlanta by Type
This dataset contains an annual count of crime incidents reported by the Atlanta Police Department (APD). It is based on incident-level data compiled from files released publicly by the ATP at https://www.atlantapd.org/i-want-to/crime-data-downloads. The numbers in this dataset may vary from other published statistics because the numbers here represent crime incidents and data from other sources often represent crime victims.
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 \"sharefulton-fultoncountyga-gov/annual-crime-incidents-in-atlanta-by-type-h4ye-ggte\".\"annual_crime_incidents_in_atlanta_by_type\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.