I can't crack a problem I've been working on for quite a while.
I have ZIP-level data for a certain thing, let's say hospital discharges or ED visits.
I want to "dub down" this ZIP-level data to tracts or blocks. This data scales better by population, not area.
Summarize within only calculates by area, right? How can I do this in AGOL?
As we all know, some ZIPs are very "lumpy" in where actual people live, especially out in the west where many ZIPs are mostly empty space. So tracts and blocks show were actually the people are.
I want my output to be the tracts/blocks/or polygon enriched with the correct number of discharges scaled by population.
Imagine we had a ZIP that was a perfect 10mi by 10mi square. 100 sq mi. 1000 pop and 1000 discharges.
Imagine there's 2 blocks in there that are b2 =10mi by 7mi (70 sq mi) and b1 = 10mi by 3mi (30 sq mi). b2 has almost nobody, only 100 pop, while b1 has pop 900.
I want the 1000 discharges for 1000 pop at ZIP level distributed or "enriched" to the blocks b1 and b2 by pop, resulting in b1 = 900 discharges and b2 = 1000 discharges. If I use summarize within, it goes by area, and gives all the discharges to b2 because it is bigger.
How do I do this in AGOL?