<?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: Divide Large Polygon into Small Polygons in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391295#M27198</link>
    <description>&lt;P&gt;You could try:&lt;/P&gt;&lt;P&gt;polygon to centerline&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/topographic-production/polygon-to-centerline.htm" target="_blank"&gt;Polygon To Centerline (Topographic Production)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;followed by the transect tool on centerline, using a length that spans your polygon width&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/generate-transects-along-lines.htm" target="_blank"&gt;Generate Transects Along Lines (Data Management)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;split accordingly&lt;/P&gt;&lt;P&gt;and/or a negative distance multiring buffer of appropriate distance could be split&lt;/P&gt;</description>
    <pubDate>Tue, 05 Mar 2024 17:35:29 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2024-03-05T17:35:29Z</dc:date>
    <item>
      <title>Divide Large Polygon into Small Polygons</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391098#M27193</link>
      <description>&lt;P&gt;I have a large polygon and a set of points. Now I want to divide the large polygon into small ones in a way that each point is a corner of small polygon.&amp;nbsp;&lt;/P&gt;&lt;P&gt;OR, is there any way to join the points in such a way that it produced the desired output as shown in the picture? I have tried "Points to Line", but it is not working.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="I have inputs like this" style="width: 626px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96883i3A6EB5EBAE54962D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-03-05 203410.png" alt="Screenshot 2024-03-05 203410.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="I want to do this" style="width: 682px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96884iB8DDB6BD2A39EBC3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-03-04 002903.png" alt="Screenshot 2024-03-04 002903.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 14:39:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391098#M27193</guid>
      <dc:creator>MdTouhidurRahman</dc:creator>
      <dc:date>2024-03-05T14:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Divide Large Polygon into Small Polygons</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391115#M27194</link>
      <description>&lt;P&gt;Do your points have any attributes on them, like some kind of transect id? Combining the &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/points-to-line.htm" target="_blank"&gt;Points to Line&lt;/A&gt; tool with the &lt;STRONG&gt;Split&lt;/STRONG&gt; tool could work.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 14:57:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391115#M27194</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-03-05T14:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Divide Large Polygon into Small Polygons</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391120#M27195</link>
      <description>&lt;P&gt;&lt;STRONG&gt;"Easy" / Brute-Force Method&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If this polygon is the exact and only one where you need to do this, the fastest brute-force method would be using the split tool and snapping.&lt;BR /&gt;&lt;BR /&gt;First, I'd cut along the thinner axis (red lines), then I'd cut on the longitudinal axis (green lines):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MErikReedAugusta_0-1709650529947.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96885i59BAB461D2ED0FC0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MErikReedAugusta_0-1709650529947.png" alt="MErikReedAugusta_0-1709650529947.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As long as snapping is turned on and you snap to every vertex along the way, it should work.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Programmatic / Tool Method&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;But if you need to do this on a bunch, then a tool might be necessary.&amp;nbsp; Off the top of my head, you'll likely need to first convert those points to a fishnet of lines.&amp;nbsp; Then you run "&lt;STRONG&gt;Feature to Polygon&lt;/STRONG&gt;", feeding those lines in with your polygon, and it'll julienne it right up for you.&lt;/P&gt;&lt;P&gt;The tricky part is going to be the fishnet...&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;Points to Line&lt;/STRONG&gt;"&amp;nbsp;&lt;EM&gt;might&lt;/EM&gt; work, but I admit I haven't run it on a grid like this.&amp;nbsp; I&amp;nbsp;&lt;EM&gt;think&lt;/EM&gt; you'd still have to select each row, which is basically as labor-intensive as the Split tool, above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If someone doesn't beat me to it, I might be able to gin up a python script using the Near Table or similar later today, but I need more caffeine for that.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 15:04:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391120#M27195</guid>
      <dc:creator>MErikReedAugusta</dc:creator>
      <dc:date>2024-03-05T15:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Divide Large Polygon into Small Polygons</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391123#M27196</link>
      <description>&lt;P&gt;The point feature has attributes. But those are not sorted. If I select row by row from the attribute table, points from here and there are marking. So the points are not ordered.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 15:07:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391123#M27196</guid>
      <dc:creator>MdTouhidurRahman</dc:creator>
      <dc:date>2024-03-05T15:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Divide Large Polygon into Small Polygons</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391136#M27197</link>
      <description>&lt;P&gt;I need to do this on a bunch of features. The points are not ordered.&amp;nbsp;&lt;SPAN&gt;If I select row by row from the attribute table, points from here and there. So "&lt;STRONG&gt;Points to Line&lt;/STRONG&gt;" is not working.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help is greatly appreciated.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 15:16:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391136#M27197</guid>
      <dc:creator>MdTouhidurRahman</dc:creator>
      <dc:date>2024-03-05T15:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Divide Large Polygon into Small Polygons</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391295#M27198</link>
      <description>&lt;P&gt;You could try:&lt;/P&gt;&lt;P&gt;polygon to centerline&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/topographic-production/polygon-to-centerline.htm" target="_blank"&gt;Polygon To Centerline (Topographic Production)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;followed by the transect tool on centerline, using a length that spans your polygon width&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/generate-transects-along-lines.htm" target="_blank"&gt;Generate Transects Along Lines (Data Management)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;split accordingly&lt;/P&gt;&lt;P&gt;and/or a negative distance multiring buffer of appropriate distance could be split&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 17:35:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1391295#M27198</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2024-03-05T17:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: Divide Large Polygon into Small Polygons</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1392032#M27206</link>
      <description>&lt;P&gt;It worked. Thanks a lot!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 18:18:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/divide-large-polygon-into-small-polygons/m-p/1392032#M27206</guid>
      <dc:creator>MdTouhidurRahman</dc:creator>
      <dc:date>2024-03-06T18:18:03Z</dc:date>
    </item>
  </channel>
</rss>

