Skip to content
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

Add population data #139

Open
alulsh opened this issue Oct 22, 2016 · 2 comments
Open

Add population data #139

alulsh opened this issue Oct 22, 2016 · 2 comments

Comments

@alulsh
Copy link
Member

alulsh commented Oct 22, 2016

Eventually, WABA wants to analyze how many people do not live within 1 mile of a bike lane. They also want to see how many more people would live closer to a bike lane if they advocated for new bike lanes in underserved areas.

This will involve pulling in population data from either an API (preferable) or from a dataset. This is a complicated problem that will take us a while to solve, but we can get started on researching this to evaluate the lift and feasibility.

@dayanaa - can you add your research notes and pseudocode from today's Tech Lady hackathon to this ticket?

@dayanaa
Copy link

dayanaa commented Oct 22, 2016

Still looking for some more examples of the geostatistical method below in case it's unclear here, but here is where the content stands as of the early afternoon.

Pull populations at census block level through API and calculate it against buffers

  1. Find population by census block (if unavailable, the next highest geographic level is census block group)
  2. Clip buffer on census blocks
  3. Measure what percentage of area is within clipped buffer (so for example, you should then theoretically be able to say that 20% of census block A is within Buffer 1)
  4. Take the percentage of how much of a census block is within the buffer and multiply that by the number of population within that census block (so for example: if 1000 people live within block A, and 20% of block A is within the buffer, then 20% of 1000 is the spatially calculated number of people living within buffer 1 as it intersects with block A).
  5. Sum all of the clipped calculations to get the estimated number of people within a buffer

This process is replicable for any variables reported at the census geographic levels - race, income, gender, etc.

Data services, metadata and information:

  1. Census decennial API (latest data is from 2010)
  2. Census ACS 5-year data (latest data is from 2014)
  3. Census geographies levels

@dayanaa
Copy link

dayanaa commented Oct 22, 2016

AHA as it turns out, one term for this method is tabulating intersection http://pro.arcgis.com/en/pro-app/tool-reference/analysis/tabulate-intersection.htm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants