Hello,I am trying to create raster data sets from census block groups of a state that result in proportional allocation based on the density of the block group it is taking the value from.Essentially, I am trying to create a raster like the one in the second picture on this website:http://sedac.ciesin.columbia.edu/data/collection/gpw-v3/methods/gridI have tried searching all over the place including in all of the related toolboxes within ArcGIS.Has anyone ever created raster files like this before? Is there an easy way to proportionally allocate quantitative data in a raster?I would appreciate any advice.ThanEric
# Create the cell count raster pyLURas = Lookup(pyNonZeroPop,"Count") # Divide population raster by cell count raster; 'distributes' values into each cell in output outDistRas = Float(pyNonZeroPop) / Float(pyLURas) outDistRas.save(outputDistRaster)
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.