<?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: How to split polygon using another polygon in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-split-polygon-using-another-polygon/m-p/1174981#M55261</link>
    <description>&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/intersect.htm" target="_blank" rel="noopener"&gt;Intersect&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_0-1652864180029.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/41581i2670C404313A4DF8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_0-1652864180029.png" alt="JohannesLindner_0-1652864180029.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But if you are using ArcGIS Pro and have write access to the property feature class, you can also do this with CalculateField.&lt;/P&gt;&lt;P&gt;Use Arcade as Expression Type and use this expression (change "TestPolygons" to the name of your forest feature class):&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// load the forest fc
var forests = FeatureSetByName($datastore, "TestPolygons")
// get all forests intersecting the current feature
var intersecting_forests = Intersects($feature, forests)
// calculate the sum of all forest areas in the current feature
var forest_area = 0
for(var forest in intersecting_forests) {
    forest_area += Area(Intersection($feature, forest))
}
// return that sum
return forest_area&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1652865781433.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/41583i764BFE7CBBF7C5B7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_1-1652865781433.png" alt="JohannesLindner_1-1652865781433.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 May 2022 09:23:39 GMT</pubDate>
    <dc:creator>JohannesLindner</dc:creator>
    <dc:date>2022-05-18T09:23:39Z</dc:date>
    <item>
      <title>How to split polygon using another polygon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-split-polygon-using-another-polygon/m-p/1174937#M55256</link>
      <description>&lt;P&gt;Have two data layers: forest and property boundaries that cover a large area.&lt;/P&gt;&lt;P&gt;I need to split the forest layer by the properties so that I can calculate the area of forest within each property.&lt;/P&gt;&lt;P&gt;How do I go about doing this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 05:00:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-split-polygon-using-another-polygon/m-p/1174937#M55256</guid>
      <dc:creator>CaitlinLisha</dc:creator>
      <dc:date>2022-05-18T05:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to split polygon using another polygon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-split-polygon-using-another-polygon/m-p/1174971#M55260</link>
      <description>&lt;P&gt;Sounds like you want&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/spatial-analyst/tabulate-area.htm" target="_blank"&gt;Tabulate Area (Spatial Analyst)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 08:54:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-split-polygon-using-another-polygon/m-p/1174971#M55260</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-05-18T08:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to split polygon using another polygon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-split-polygon-using-another-polygon/m-p/1174981#M55261</link>
      <description>&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/intersect.htm" target="_blank" rel="noopener"&gt;Intersect&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_0-1652864180029.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/41581i2670C404313A4DF8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_0-1652864180029.png" alt="JohannesLindner_0-1652864180029.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But if you are using ArcGIS Pro and have write access to the property feature class, you can also do this with CalculateField.&lt;/P&gt;&lt;P&gt;Use Arcade as Expression Type and use this expression (change "TestPolygons" to the name of your forest feature class):&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// load the forest fc
var forests = FeatureSetByName($datastore, "TestPolygons")
// get all forests intersecting the current feature
var intersecting_forests = Intersects($feature, forests)
// calculate the sum of all forest areas in the current feature
var forest_area = 0
for(var forest in intersecting_forests) {
    forest_area += Area(Intersection($feature, forest))
}
// return that sum
return forest_area&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1652865781433.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/41583i764BFE7CBBF7C5B7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_1-1652865781433.png" alt="JohannesLindner_1-1652865781433.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 09:23:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-split-polygon-using-another-polygon/m-p/1174981#M55261</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2022-05-18T09:23:39Z</dc:date>
    </item>
  </channel>
</rss>

