VIUS Public Use File Data
This is a recoded version of the 2021 VIUS Public Use file.
The Original is found at https://www2.census.gov/programs-surveys/vius/datasets/2021/ and should be used as the most up to date version. This version will be updated as need be and was extracted 2/2/2024.
The main difference between the files is that the data dictionary has been incorporated into the database to minimize cross-checking.
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 \"bts-gov/vius-public-use-file-data-uhb6-dvuq\".\"vius_public_use_file_data\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.