<?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 Re: Overlapping polygons: cover percentage in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/overlapping-polygons-cover-percentage/m-p/523461#M17391</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Let's assume your feature class is called "MyPolys".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Run the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Intersect/00080000000p000000/"&gt;Intersect&lt;/A&gt;&lt;SPAN&gt; tool.&amp;nbsp; You'll have only one input feature class, MyPolys.&amp;nbsp; This will create a new feature class with the default name of "MyPolys_Intersect".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Open the attribute table of MyPolys_Intersect and sort it on the FID_MyPolys field (the original object id of MyPolys).&amp;nbsp; You'll see that there are multiple entries for each original MyPolys polygons.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To calculate percentage overlap, you'll want to add a field containing the original area of the MyPolys polygon.&amp;nbsp; Use the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Join_Field/001700000065000000/"&gt;Join Field&lt;/A&gt;&lt;SPAN&gt; tool for this.&amp;nbsp; Your input table is MyPolys_Intersect, the Input Join Field is FID_MyPolys, the join table is MyPolys, and the Output join field is OBJECTID.&amp;nbsp; For fields to join, choose Shape_area.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After Join Field executes, you'll have a shape_area field and a shape_area_1 field. (If you're viewing the table in arcmap, turn field aliases off... both these fields have an alias of "shape_area".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You're ready finish your calculation of percent overlap.&amp;nbsp; Use Add Field to add a new field called "Percent_overlap".&amp;nbsp; Use Calculate Field to calculate Percent_overlap = shape_area / shape_area_1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want more information, such as the IDs of the overlapped polygons, run Intersect, but enter MyPolys twice.&amp;nbsp; This will overlay MyPolys on top of itself.&amp;nbsp; The output table table will list each unique combination of overlaps.&amp;nbsp; You'll want to ignore any entry that lists itself.&amp;nbsp; That is, select for FID_MyPolys &amp;lt;&amp;gt; FID_MyPolys_1&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jul 2011 16:12:22 GMT</pubDate>
    <dc:creator>DaleHoneycutt</dc:creator>
    <dc:date>2011-07-21T16:12:22Z</dc:date>
    <item>
      <title>Overlapping polygons: cover percentage</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/overlapping-polygons-cover-percentage/m-p/523459#M17389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have thousands of polygons in the same shapefile. They overlap in many ways and percentages. I need to find out, for each polygon, the percentage of its surface covered by other polygons.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If possible, it would be interesting also to know which polygon overlaps to each other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2011 05:49:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/overlapping-polygons-cover-percentage/m-p/523459#M17389</guid>
      <dc:creator>MassimoOmetto</dc:creator>
      <dc:date>2011-07-21T05:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Overlapping polygons: cover percentage</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/overlapping-polygons-cover-percentage/m-p/523460#M17390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Normally, I would suggest extracting each polygon into a separate layer and then unioning the lot. The table would tell you which polygons overlapped, and by how much. Doing it as a file Geodatabase would automatically generate the areas and be easier to handle than individual shapefiles.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, with "thousands" of overlapping polys, the resulting table will be quite wide.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It may be better to automate an extraction and analysis loop in python:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- select a polygon, and get its area&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- select all polygons overlapping that selected one, and make a list of their FIDs&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- export the identified overlapping polys to separate feature classes (select them by their FID)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- union the exported polygon feature classes (or use Identity, if you have ArcInfo)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- extract the desired information from the unioned FC table (total area of overlap) and write it, along with the list of overlappers and the original polygon's area) to a new record in a stand-alone table &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- calculate the percentage of overlap area to original polygon area in that record&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- delete the union and intermediate FCs&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- select the next polygon in your original file and do it again&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It gets more complex if you want the amount or percentage each polygon overlaps the target...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark Denil&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2011 14:32:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/overlapping-polygons-cover-percentage/m-p/523460#M17390</guid>
      <dc:creator>markdenil</dc:creator>
      <dc:date>2011-07-21T14:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Overlapping polygons: cover percentage</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/overlapping-polygons-cover-percentage/m-p/523461#M17391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Let's assume your feature class is called "MyPolys".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Run the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Intersect/00080000000p000000/"&gt;Intersect&lt;/A&gt;&lt;SPAN&gt; tool.&amp;nbsp; You'll have only one input feature class, MyPolys.&amp;nbsp; This will create a new feature class with the default name of "MyPolys_Intersect".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Open the attribute table of MyPolys_Intersect and sort it on the FID_MyPolys field (the original object id of MyPolys).&amp;nbsp; You'll see that there are multiple entries for each original MyPolys polygons.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To calculate percentage overlap, you'll want to add a field containing the original area of the MyPolys polygon.&amp;nbsp; Use the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Join_Field/001700000065000000/"&gt;Join Field&lt;/A&gt;&lt;SPAN&gt; tool for this.&amp;nbsp; Your input table is MyPolys_Intersect, the Input Join Field is FID_MyPolys, the join table is MyPolys, and the Output join field is OBJECTID.&amp;nbsp; For fields to join, choose Shape_area.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After Join Field executes, you'll have a shape_area field and a shape_area_1 field. (If you're viewing the table in arcmap, turn field aliases off... both these fields have an alias of "shape_area".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You're ready finish your calculation of percent overlap.&amp;nbsp; Use Add Field to add a new field called "Percent_overlap".&amp;nbsp; Use Calculate Field to calculate Percent_overlap = shape_area / shape_area_1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want more information, such as the IDs of the overlapped polygons, run Intersect, but enter MyPolys twice.&amp;nbsp; This will overlay MyPolys on top of itself.&amp;nbsp; The output table table will list each unique combination of overlaps.&amp;nbsp; You'll want to ignore any entry that lists itself.&amp;nbsp; That is, select for FID_MyPolys &amp;lt;&amp;gt; FID_MyPolys_1&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2011 16:12:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/overlapping-polygons-cover-percentage/m-p/523461#M17391</guid>
      <dc:creator>DaleHoneycutt</dc:creator>
      <dc:date>2011-07-21T16:12:22Z</dc:date>
    </item>
  </channel>
</rss>

