Iowa Geographic Names
This dataset provides the geographic names data for Iowa. All names data products are extracted from the Geographic Names Information System (GNIS), the Federal Government's repository of official geographic names.
The GNIS contains the federally recognized name of each feature and defines its location by State, county, USGS topographic map, and geographic coordinates. GNIS also lists variant names, which are non-official names by which a feature is or was known. Other attributes include unique Feature ID and feature class. Feature classes under the purview of the U.S. Board on Geographic Names include natural features, unincorporated populated places, canals, channels, reservoirs, and more.
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 \"mydata-iowa-gov/iowa-geographic-names-uedc-2fk7\".\"iowa_geographic_names\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.