<?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: Make Non-Overlapping Buffer Rings that only is affected by Source Point in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/make-non-overlapping-buffer-rings-that-only-is/m-p/1210677#M59651</link>
    <description>&lt;P&gt;There's probably a way to do it with tools, but you can easily do this with a Python script:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;in_features = "TestPoints"
inner = 400
outer = 800
out_dir = "memory"
out_name = "ring_buffer"


# create the output fc
sr = arcpy.Describe(in_features).spatialReference
out_feature = arcpy.management.MakeFeatureclass(out_dir, out_name, "POLYGON", spatial_reference=sr)
arcpy.management.AddField(out_feature, "Orig_FID", "LONG")


with arcpy.da.InsertCursor(out_feature, ["SHAPE@", "Orig_FID"]) as i_cursor:
    with arcpy.da.SearchCursor(in_features, ["SHAPE@", "OID@"]) as s_cursor:
        for shp, oid in s_cursor:
            # create inner and outer buffers
            b_inner = shp.buffer(inner)
            b_outer = shp.buffer(outer)
            # get the geometric difference -&amp;gt; the ring
            ring_shp = b_outer.difference(b_inner)
            # write the ring into the output fc
            i_cursor.insertRow([ring_shp, oid])&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1662624194254.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/50705i8965A708EE4D6113/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_1-1662624194254.png" alt="JohannesLindner_1-1662624194254.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Sep 2022 08:03:24 GMT</pubDate>
    <dc:creator>JohannesLindner</dc:creator>
    <dc:date>2022-09-08T08:03:24Z</dc:date>
    <item>
      <title>Make Non-Overlapping Buffer Rings that only is affected by Source Point</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/make-non-overlapping-buffer-rings-that-only-is/m-p/1210505#M59635</link>
      <description>&lt;P&gt;I am trying to create a 400 m to 800 m outer ring around many points that exist in the same shapefile.&lt;/P&gt;&lt;P&gt;When I try the multiple ring buffer tool with non-overlapping or the buffer tool followed by an erase, the other adjacent points interfere with the ring cutting off some of the area I would like.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ElysiaFullerThomson_1-1662578368565.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/50663i8274CDF413C666F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ElysiaFullerThomson_1-1662578368565.png" alt="ElysiaFullerThomson_1-1662578368565.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;What I would like to see is perfectly intact rings, even if two points are withing 400 m of each other, so that all the rings would like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ElysiaFullerThomson_0-1662578342135.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/50662i4C7E616315C39692/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ElysiaFullerThomson_0-1662578342135.png" alt="ElysiaFullerThomson_0-1662578342135.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2022 19:20:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/make-non-overlapping-buffer-rings-that-only-is/m-p/1210505#M59635</guid>
      <dc:creator>ElysiaFuller-Thomson</dc:creator>
      <dc:date>2022-09-07T19:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Make Non-Overlapping Buffer Rings that only is affected by Source Point</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/make-non-overlapping-buffer-rings-that-only-is/m-p/1210677#M59651</link>
      <description>&lt;P&gt;There's probably a way to do it with tools, but you can easily do this with a Python script:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;in_features = "TestPoints"
inner = 400
outer = 800
out_dir = "memory"
out_name = "ring_buffer"


# create the output fc
sr = arcpy.Describe(in_features).spatialReference
out_feature = arcpy.management.MakeFeatureclass(out_dir, out_name, "POLYGON", spatial_reference=sr)
arcpy.management.AddField(out_feature, "Orig_FID", "LONG")


with arcpy.da.InsertCursor(out_feature, ["SHAPE@", "Orig_FID"]) as i_cursor:
    with arcpy.da.SearchCursor(in_features, ["SHAPE@", "OID@"]) as s_cursor:
        for shp, oid in s_cursor:
            # create inner and outer buffers
            b_inner = shp.buffer(inner)
            b_outer = shp.buffer(outer)
            # get the geometric difference -&amp;gt; the ring
            ring_shp = b_outer.difference(b_inner)
            # write the ring into the output fc
            i_cursor.insertRow([ring_shp, oid])&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1662624194254.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/50705i8965A708EE4D6113/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_1-1662624194254.png" alt="JohannesLindner_1-1662624194254.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 08:03:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/make-non-overlapping-buffer-rings-that-only-is/m-p/1210677#M59651</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2022-09-08T08:03:24Z</dc:date>
    </item>
  </channel>
</rss>

