get_census_api_2: Census API URL assembler.

View source: R/get_census_api_2.R

get_census_api_2R Documentation

Census API URL assembler.

Description

get_census_api_2 assembles URL components for get_census_api.

Usage

get_census_api_2(data_url, key, get, region, retry = 3)

Arguments

data_url

URL root of the API, including the question mark, e.g., "https://api.census.gov/data/2010/dec/sf1?".

key

A required character object containing user's Census API key, which can be requested here.

get

A character vector of variables to get, e.g., c("P005003","P005004","P005005", "P005006"). If there are more than 50 variables, then function will automatically split variables into separate queries.

region

Character object specifying which region to obtain data for. Must contain "for" and possibly "in", e.g., "for=block:1213&in=state:47+county:015+tract:*".

retry

The number of retries at the census website if network interruption occurs.

Details

This function assembles the URL components and sends the request to the Census server. It is used by the get_census_api function. The user should not need to call this function directly.

Value

If successful, output will be an object of class data.frame. If unsuccessful, function prints the URL query that was constructed.

References

Based on code authored by Nicholas Nagle, which is available here.

Examples

## Not run: try(get_census_api_2(data_url = "https://api.census.gov/data/2010/dec/sf1?", key = "...", 
get = c("P005003","P005004","P005005", "P005006"), region = "for=county:*&in=state:34"))
## End(Not run)


wru documentation built on Oct. 22, 2022, 1:05 a.m.