datadesk / census-data-downloader

Download U.S. census data and reformat it for humans
MIT License
218 stars 34 forks source link

Support more geographies #3

Open palewire opened 5 years ago

palewire commented 5 years ago

Here's what the API now supports:

eyeseast commented 5 years ago

Blocks and block groups?

palewire commented 5 years ago

I think they're possible, but I'm not sure what parent area you'd have to iterate thru to pull them piece by piece.

The MOE is probably gnarly in the ACS too, no?

Might be a good area to explore, especially if we aim to add support for 2010 sf1 in addition to the acs5.

On Tue, Jul 2, 2019, 12:31 PM Chris Amico notifications@github.com wrote:

Blocks and block groups?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/datadesk/census-data-downloader/issues/3?email_source=notifications&email_token=AAACOCN6ZXSMLDHRFG3A3FLP5OUJVA5CNFSM4HCSM7Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCKEHQ#issuecomment-507814430, or mute the thread https://github.com/notifications/unsubscribe-auth/AAACOCMHWTWVYKGSKLWMS4DP5OUJVANCNFSM4HCSM7YQ .

eyeseast commented 5 years ago

Belatedly...

You can get them by state, under the decennial census. So that would most likely mean adding support for 2010 SF1.

For blocks, though, I'm not sure the Census API is easier than the FTP site and a makefile. I ended up generating a text file with URLs and running wget -I urls.txt on it to download blocks from every state. As far as I can tell, blocks only have data on population and number of households, so maybe not worth adding here.

I'll dig into block groups more and report back.