-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue downloading block-level data from the 2010 decennial, summary file sf1 #598
Comments
Thank you for looking into this! For example, this returns an empty table. tidycensus::get_decennial(geography="block", And this throws an error: tidycensus::get_decennial(geography="block", Error message: Error in map_chr(county, function(x) { :
|
Unfortunately, the Census API has removed the ability to get block-level data by state in the 2010 Census. We'll need to either iterate over counties or throw an error in the next release. Regarding your code @cnoelke, you don't need to specify the state code as part of the county code. This works:
|
Confirming that state-by-county download is working. Gotta add that extra county loop now. Thank you, Kyle! |
get_decennial is not working for the following parameters:
geography <- "block"
year <- 2010
sumfile <- "sf1"
other values of geography, ie tract, work just fine
other years work, ie 2000, work just fine
the values input for state, variables or any other parameters don't appear to make a difference.
when using get_decennial for block level 2010 sf1 data, the command runs but returns an empty data table.
The text was updated successfully, but these errors were encountered: