<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic arithmetic operation of point fetures over raster cell area in Spatial Data Science Questions</title>
    <link>https://community.esri.com/t5/spatial-data-science-questions/arithmetic-operation-of-point-fetures-over-raster/m-p/227903#M538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a raster file with a human population count for each raster cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have another layer with x,y,z vector point features.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to sum the z values of all point features that lie within each raster cell area, and divide that sum by the human population value in the raster cell. Ultimately I want to map z-per-capita.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How should I approach this exercise and what tools should I use within my evaluation copy of ArcMap 10.3? I am new to GIS and the learning curve for ArcGIS is immense, so I hope my question makes sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a tutorial guide or video with a roughly similar operation, please let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 16 Aug 2015 17:04:36 GMT</pubDate>
    <dc:creator>BrettBonner</dc:creator>
    <dc:date>2015-08-16T17:04:36Z</dc:date>
    <item>
      <title>arithmetic operation of point fetures over raster cell area</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/arithmetic-operation-of-point-fetures-over-raster/m-p/227903#M538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a raster file with a human population count for each raster cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have another layer with x,y,z vector point features.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to sum the z values of all point features that lie within each raster cell area, and divide that sum by the human population value in the raster cell. Ultimately I want to map z-per-capita.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How should I approach this exercise and what tools should I use within my evaluation copy of ArcMap 10.3? I am new to GIS and the learning curve for ArcGIS is immense, so I hope my question makes sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a tutorial guide or video with a roughly similar operation, please let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2015 17:04:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/arithmetic-operation-of-point-fetures-over-raster/m-p/227903#M538</guid>
      <dc:creator>BrettBonner</dc:creator>
      <dc:date>2015-08-16T17:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: arithmetic operation of point fetures over raster cell area</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/arithmetic-operation-of-point-fetures-over-raster/m-p/227904#M539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not so sure about the "makes sense" part, but strictly speaking you could convert your x,y,z points to raster: &lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/conversion-toolbox/point-to-raster.htm" title="http://desktop.arcgis.com/en/desktop/latest/tools/conversion-toolbox/point-to-raster.htm"&gt;Point to Raster—Help | ArcGIS for Desktop&lt;/A&gt; , using the Z as value field and SUM as cell assignment. This will yield a raster with the Z values summed per cell (make sure you set the geoprocessing environment to match the extent, cellsize and snap raster to the other population raster you already have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next step would be to use the divide tool from Spatial Analyst to divide the population raster by the summed Z raster. If the results makes sense, depends on the data you have. In case a cell in either raster has no data, the result will be no data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2015 22:32:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/arithmetic-operation-of-point-fetures-over-raster/m-p/227904#M539</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-08-22T22:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: arithmetic operation of point fetures over raster cell area</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/arithmetic-operation-of-point-fetures-over-raster/m-p/227905#M540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I ended up performing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a fishnet to the extents and according to the cell size of the raster, and converted the fishnet to polygons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I converted the raster to point feature centroids.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next, I used a spatial join to join the point feature centroids and also the sum of point features within the polygons created from the fishnet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, using the attribute table I created a new field and simply divided by the once-raster values column by the point feature sum column. &lt;EM&gt;Voila &lt;/EM&gt;I have performed arithmetic using raster z-values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2015 03:54:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/arithmetic-operation-of-point-fetures-over-raster/m-p/227905#M540</guid>
      <dc:creator>BrettBonner</dc:creator>
      <dc:date>2015-08-28T03:54:24Z</dc:date>
    </item>
  </channel>
</rss>

