<?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: Directional buffer / offset for polygon edges based on bearing and spacing in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/directional-buffer-offset-for-polygon-edges-based/m-p/1691898#M102459</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/441486"&gt;@chill_gis_dude&lt;/a&gt;&amp;nbsp;At the moment this functionality is not possible out of the box and seems like it would require some additional and advanced scripting.&lt;/P&gt;&lt;P&gt;If you haven't tried you might be able to split the polygon using&lt;/P&gt;&lt;P&gt;1. feature to line&lt;BR /&gt;2. Add field to calculate the line bearing&lt;BR /&gt;3. Classify each edge as parallel or perpendicular (&lt;/P&gt;&lt;P&gt;Delta =|edge\_ bearing-row\_ bearing|&lt;/P&gt;&lt;P&gt;if delta &amp;gt; 90: delta = 180 - delta&lt;/P&gt;&lt;P&gt;Parallel would be if Delta &amp;lt;45&lt;BR /&gt;Perpendicular would be if Delta &amp;gt;= 45&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. Assign the correct offset&amp;nbsp;&lt;BR /&gt;- Add a field&amp;nbsp;&lt;BR /&gt;- If parallel. row_spacing/2&lt;BR /&gt;- If perpendicular. plant_spacing/2&lt;/P&gt;&lt;P&gt;This will give each edge its own offset distance&lt;/P&gt;&lt;P&gt;5. Offset each edge individually&lt;/P&gt;&lt;P&gt;- You could try in this instance&amp;nbsp;&lt;BR /&gt;arcpy.Geometry().offsetCurve()&amp;nbsp;&lt;BR /&gt;This should hopefully allow per feature offset distances and avoid the buffer tools reconstruction.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finally&lt;/P&gt;&lt;P&gt;6. Rebuild the polygon from the offset edges using Feature to Polygon or Dissolve&lt;/P&gt;&lt;P&gt;Feel free to try the above as a guideline, but&amp;nbsp;I would recommend putting this into an Esri Ideas page I think it would make an excellent addition to the toolboxes already available.&lt;/P&gt;</description>
    <pubDate>Mon, 23 Mar 2026 11:41:52 GMT</pubDate>
    <dc:creator>DanielFox1</dc:creator>
    <dc:date>2026-03-23T11:41:52Z</dc:date>
    <item>
      <title>Directional buffer / offset for polygon edges based on bearing and spacing</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/directional-buffer-offset-for-polygon-edges-based/m-p/1691823#M102451</link>
      <description>&lt;P&gt;I am trying to automate a boundary adjustment workflow in ArcGIS Pro and could use some help. Not even sure if this is possible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have polygons that represent orchards, but the edges were surveyed at the tree line and the tree canopies go past that. I am trying to extend the edges of each polygon depending on the row or plant spacing of the orchard; what I think is an&amp;nbsp;anisotropic buffer (uneven buffer on all sides). My polygon has row spacing, plant spacing and line bearing (the angle of the rows of the orchard) attributes.&lt;/P&gt;&lt;P&gt;If the edge of the polygon is parallel to the row line I want the edge to be pushed out half of the row spacing. If the edge of the polygon is perpendicular to the row linen I want the edge to be pushed out half of the plant spacing.&lt;/P&gt;&lt;P&gt;I have tried custom arcpy scripts and affine transform + buffer methods, but they break on irregular polygons because small vertices and corner reconstruction change the offset distance.&amp;nbsp;Is there a recommended workflow in ArcGIS Pro for something like a directional / anisotropic buffer where the offset depends on edge orientation?&lt;/P&gt;&lt;P&gt;Here is an attempt at a drawing explaining the problem:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IMG_9407.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150103i98C847AAC6341C32/image-size/large?v=v2&amp;amp;px=999" role="button" title="IMG_9407.jpg" alt="IMG_9407.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 22:02:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/directional-buffer-offset-for-polygon-edges-based/m-p/1691823#M102451</guid>
      <dc:creator>chill_gis_dude</dc:creator>
      <dc:date>2026-03-20T22:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Directional buffer / offset for polygon edges based on bearing and spacing</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/directional-buffer-offset-for-polygon-edges-based/m-p/1691898#M102459</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/441486"&gt;@chill_gis_dude&lt;/a&gt;&amp;nbsp;At the moment this functionality is not possible out of the box and seems like it would require some additional and advanced scripting.&lt;/P&gt;&lt;P&gt;If you haven't tried you might be able to split the polygon using&lt;/P&gt;&lt;P&gt;1. feature to line&lt;BR /&gt;2. Add field to calculate the line bearing&lt;BR /&gt;3. Classify each edge as parallel or perpendicular (&lt;/P&gt;&lt;P&gt;Delta =|edge\_ bearing-row\_ bearing|&lt;/P&gt;&lt;P&gt;if delta &amp;gt; 90: delta = 180 - delta&lt;/P&gt;&lt;P&gt;Parallel would be if Delta &amp;lt;45&lt;BR /&gt;Perpendicular would be if Delta &amp;gt;= 45&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. Assign the correct offset&amp;nbsp;&lt;BR /&gt;- Add a field&amp;nbsp;&lt;BR /&gt;- If parallel. row_spacing/2&lt;BR /&gt;- If perpendicular. plant_spacing/2&lt;/P&gt;&lt;P&gt;This will give each edge its own offset distance&lt;/P&gt;&lt;P&gt;5. Offset each edge individually&lt;/P&gt;&lt;P&gt;- You could try in this instance&amp;nbsp;&lt;BR /&gt;arcpy.Geometry().offsetCurve()&amp;nbsp;&lt;BR /&gt;This should hopefully allow per feature offset distances and avoid the buffer tools reconstruction.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finally&lt;/P&gt;&lt;P&gt;6. Rebuild the polygon from the offset edges using Feature to Polygon or Dissolve&lt;/P&gt;&lt;P&gt;Feel free to try the above as a guideline, but&amp;nbsp;I would recommend putting this into an Esri Ideas page I think it would make an excellent addition to the toolboxes already available.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 11:41:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/directional-buffer-offset-for-polygon-edges-based/m-p/1691898#M102459</guid>
      <dc:creator>DanielFox1</dc:creator>
      <dc:date>2026-03-23T11:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Directional buffer / offset for polygon edges based on bearing and spacing</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/directional-buffer-offset-for-polygon-edges-based/m-p/1691939#M102461</link>
      <description>&lt;P&gt;Hi Daniel,&lt;BR /&gt;Thanks a lot for the reply, I really appreciate the help.&lt;/P&gt;&lt;P&gt;That gives me a good direction to try, and it sounds like this approach should get around the limitations I was running into with the standard tools. I’ll experiment with this workflow and see if I can get something working.&lt;/P&gt;&lt;P&gt;If I manage to figure out a clean solution, I’ll post it here in case it helps anyone else dealing with the same thing.&lt;/P&gt;&lt;P&gt;Thanks again for taking the time to write that up.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 14:42:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/directional-buffer-offset-for-polygon-edges-based/m-p/1691939#M102461</guid>
      <dc:creator>chill_gis_dude</dc:creator>
      <dc:date>2026-03-23T14:42:07Z</dc:date>
    </item>
  </channel>
</rss>

