<?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 How to summarize attributes from overlapping polygons in a raster? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364121#M20803</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a feature class with overlapping polygons (and there are multiple overlaps, so on certain patches I have up to 20 “layers”). I want to generate a raster in which each cell contains a summary statistic (average or sum) of one&lt;BR /&gt;of the polygon attributes. This summary statistic should be computed from all the polygons that fall within / intersect with the cell, and take into account the proportion of cell area covered by the polygon.&lt;/P&gt;&lt;P&gt;Any ideas how this could be done? Any hint would be highly appreciated!&lt;/P&gt;&lt;P&gt;Anna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 May 2016 07:53:23 GMT</pubDate>
    <dc:creator>MirjamBruederle</dc:creator>
    <dc:date>2016-05-30T07:53:23Z</dc:date>
    <item>
      <title>How to summarize attributes from overlapping polygons in a raster?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364121#M20803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a feature class with overlapping polygons (and there are multiple overlaps, so on certain patches I have up to 20 “layers”). I want to generate a raster in which each cell contains a summary statistic (average or sum) of one&lt;BR /&gt;of the polygon attributes. This summary statistic should be computed from all the polygons that fall within / intersect with the cell, and take into account the proportion of cell area covered by the polygon.&lt;/P&gt;&lt;P&gt;Any ideas how this could be done? Any hint would be highly appreciated!&lt;/P&gt;&lt;P&gt;Anna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 May 2016 07:53:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364121#M20803</guid>
      <dc:creator>MirjamBruederle</dc:creator>
      <dc:date>2016-05-30T07:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to summarize attributes from overlapping polygons in a raster?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364122#M20804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the statistics part you can convert the polygon datasets to rasters with the same cell resolution and use the &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/cell-statistics.htm"&gt;Cell Statistics tool&lt;/A&gt;.&amp;nbsp; If you want to get the proportion of the raster cell that is covered, you will need to convert your raster to polygon blocks and run an intersect with the polygon layers. What do you want to achieve by getting the proportional raster cell coverage?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 May 2016 08:02:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364122#M20804</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2016-05-30T08:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to summarize attributes from overlapping polygons in a raster?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364123#M20805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are some options in this thread in using zonal statistics with overlaps &lt;A _jive_internal="true" href="https://community.esri.com/message/595751#comment-595751" title="https://community.esri.com/message/595751#comment-595751"&gt;https://community.esri.com/message/595751#comment-595751&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Cell statistics as FC Basson mentioned is definitely a viable option with the attentions raised.&lt;/P&gt;&lt;P&gt;Addressing you overlapping polygons in a&amp;nbsp; meaningful manner via the overlay tools, to maintain the overlap values, but provide a useful classification would be the preferred method prior to introducing the rasters&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 May 2016 08:22:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364123#M20805</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-05-30T08:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to summarize attributes from overlapping polygons in a raster?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364124#M20806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="text-align: justify;"&gt;Thank you very much for these suggestions. As far as I can see, converting polygons to raster does not give me the required&lt;BR /&gt;control over how cell values are calculated from the overlapping polygons (so the cell statistics tool is not applicable to my problem I think). Also, zonal statistics do not seem to be the solution, because I actually want the summary in the reverse way: not a raster value summary within a polygon, but a polygon attribute summary within a raster cell. &lt;/P&gt;&lt;P style="text-align: justify;"&gt;Meanwhile, I thought about the following procedure:&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;run the UNION tool with my single&lt;BR /&gt;feature class of overlapping polygons to discover the overlap patches and separate them into new features; &lt;/LI&gt;&lt;LI&gt;use the DISSOLVE tool (dissolve based on the centroid of the overlapping patches) to generate the mean from all&lt;BR /&gt;the layers for each area where there are overlaps&lt;/LI&gt;&lt;LI&gt;convert to raster. &lt;/LI&gt;&lt;/OL&gt;&lt;P style="text-align: justify;"&gt;Does that make sense?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2016 11:13:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-summarize-attributes-from-overlapping/m-p/364124#M20806</guid>
      <dc:creator>MirjamBruederle</dc:creator>
      <dc:date>2016-05-31T11:13:14Z</dc:date>
    </item>
  </channel>
</rss>

