US 50 States Boundaries Shapefile
- State boundaries shapefile for all 50 states and Washington DC. Source Description: "A zipped shapefile (163 kb) of US 50 states + DC, suitable for enhancing with new tabular data. Source is Esri Data & Maps for ArcGIS 10. Attributes as provided include only state name, state FIPS, state postal code, Census region, and "draw order". The attribute table can be enhanced by any software package which can write out a DBF file, but it MUST be saved in the original draw order, which matches a set of state attributes with the correct piece of geography." Find original dataset at https://www.arcgis.com/home/item.html?id=f7f805eb65eb4ab787a0a3e1116ca7e5
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 \"michigan-gov/us-50-states-boundaries-shapefile-s3x9-e5hg\".\"us_50_states_boundaries_shapefile\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.