Skip to content
Advertisement

Cenpy Library cannot fetch Pittsburgh, PA data

I am working on a project where I am trying to analyze a lot of ACS census data from Pittsburgh, PA, USA. I can easily go to data.census.gov to grab the data I need for the 138 census tracts I am looking for, but that is simply not efficient. So I downloaded the cenpy library which has been working great for New York City ACS data. Here is an example for New York City:

JavaScript

This works fine and will give me a geodataframe with the ACS variables I pass in. I have tried this for Pittsburgh and it does not work and the errors are not very helpful:

JavaScript

This will return an error:

JavaScript

I have also tried other varients of how to spell Pittsburgh such as Pittsburgh City, Pittsburgh city, Pittsburg, and also tried spelling out the state instead of using acronym.

Ultimately, I am curious if anyone has run into this issue and how to fix it so that I can access Pittsburgh ACS data via cenpy instead of selecting every individual census tract through data.census.gov.

Thank you in advance!

Advertisement

Answer

Use 'County Subdivision' as place_type. It seems that it helps to resolve the place correctly:

JavaScript

Output:

JavaScript

Other values for this argument are 'Incorporated Place' and 'Census Designated Place'. From the documentation:

place_type : str

type of place to focus on, Incorporated Place, County Subdivision, or Census Designated Place.

See a demo in this colab.

Advertisement