<?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: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511314#M29031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you everyone, I am new to arcmaps so apologies for seemingly odd questions. I will try what you suggested, hopefully it works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Aug 2016 03:07:26 GMT</pubDate>
    <dc:creator>ErikaMartino</dc:creator>
    <dc:date>2016-08-29T03:07:26Z</dc:date>
    <item>
      <title>I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511310#M29027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?&lt;/P&gt;&lt;P&gt;For example, from this...&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/218398_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;to this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/218399_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 01:54:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511310#M29027</guid>
      <dc:creator>ErikaMartino</dc:creator>
      <dc:date>2016-08-29T01:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511311#M29028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One quick way, is to buffer out by an amount necessary to collapse the gaps, dissolving the buffers, then buffer than layer back in by the same amount. &amp;nbsp;A bit cludgy, but it works and it doesn't appear that you need any other control since you are also joining parts that aren't currently&amp;nbsp;joining&lt;/P&gt;&lt;P&gt;EDIT&lt;/P&gt;&lt;P&gt;Curtis recommended this procedure if you have the appropriate license level&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="link-titled" href="https://community.esri.com/message/562005?commentID=562005#comment-562005" title="https://community.esri.com/message/562005?commentID=562005#comment-562005"&gt;https://community.esri.com/message/562005?commentID=562005#comment-562005&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 02:01:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511311#M29028</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-29T02:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511312#M29029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The alternative would be to use some Python and only write the polygon parts that aren't holes back to the&amp;nbsp;feature. I remember something like the holes being identified with a Point that is None. I guess it should be possible and possible with each license level.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 02:46:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511312#M29029</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-08-29T02:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511313#M29030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander, yes None separates the inner and outer part or disjoint parts. &amp;nbsp;You have to check the ring orientation or extent (or centroid)? of the parts to ensure one is a ring and not a disjoint part though. &amp;nbsp;Even something as simple as discarding everything after the first duplicate point is reached works in most cases. Can be done with a search cursor, python or numpy, if the known bits are donuts, then it is simpler, because you just take the first part. &amp;nbsp;I think we covered this before, somewhere.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 03:00:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511313#M29030</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-29T03:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511314#M29031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you everyone, I am new to arcmaps so apologies for seemingly odd questions. I will try what you suggested, hopefully it works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 03:07:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511314#M29031</guid>
      <dc:creator>ErikaMartino</dc:creator>
      <dc:date>2016-08-29T03:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511315#M29032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use Eliminate Polygon Part , in (Arc toolbox &amp;gt; Data Management Tools &amp;gt; Generalization &amp;gt;&amp;nbsp;Eliminate Polygon Part&amp;nbsp;) specify area well and it will fill interior gabs.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/218400_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 03:23:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511315#M29032</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-08-29T03:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511316#M29033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With a side note that the Eliminate Polygon Part tool is only available if you have an Advanced license...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 11:20:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511316#M29033</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-08-29T11:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511317#M29034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If one doesn't have an &lt;EM&gt;Advanced License&lt;/EM&gt; to use the &lt;EM&gt;Eliminate Polygon Part&lt;/EM&gt; geoprocessing tool, there is a workflow posted on &lt;EM&gt;Stack Exchange&lt;/EM&gt; that looks like it would work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Use &lt;EM&gt;Union (Analysis)&lt;/EM&gt; on the layer, being sure to uncheck the checkbox for "&lt;EM&gt;Gaps allowed (optional)&lt;/EM&gt;".&amp;nbsp; This will cause new polygons to be created wherever there are gaps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="218466" alt="" class="image-4 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/218466_gap_Union.jpg" style="width: 620px; height: 283px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Run &lt;EM&gt;Dissolve (Analysis)&lt;/EM&gt; on the output of the Union to combine all the polygons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source:&amp;nbsp; &lt;A class="link-titled" href="http://gis.stackexchange.com/questions/66049/how-to-remove-only-donut-holes-from-polygons-using-arcgis-desktop" title="http://gis.stackexchange.com/questions/66049/how-to-remove-only-donut-holes-from-polygons-using-arcgis-desktop"&gt;How to remove only donut holes from polygons using ArcGIS Desktop? - Geographic Information Systems Stack Exchange&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="218451" alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/218451_gap_feature_start.jpg" style="width: 620px; height: 309px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="218452" alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/218452_gap_feature_Union_gaps_allowed_unchecked.jpg" style="width: 620px; height: 303px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="218465" alt="" class="image-3 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/218465_gap_feature_Union_Dissolved.jpg" style="width: 620px; height: 315px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 15:35:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511317#M29034</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2016-08-29T15:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511318#M29035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below a small example of Python in case you have single part features (use the&amp;nbsp;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/multipart-to-singlepart.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/multipart-to-singlepart.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Multipart To Singlepart—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;tool). I digitized some roads and buffered them:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/218464_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;After running the Multipart to Singlepart tool I ended up with two features. When I run the code below (creating a new featureclass, not overwriting the input geometries), I end up with this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/218499_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;Code used:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;def&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;main&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy

&amp;nbsp;&amp;nbsp;&amp;nbsp; fc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'D:\Xander\GeoNet\EliminateHoles\gdb\data.gdb\roads_buf_sp'&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_out &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'D:\Xander\GeoNet\EliminateHoles\gdb\data.gdb\result01'&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; sr &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatialReference

&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_feats &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'SHAPE@'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; curs&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; curs&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; polygon &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; polyline &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; polygon&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;boundary&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; first_part &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; polyline&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;getPart&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; polygon_new &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Polygon&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;first_part&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sr&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_feats&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;polygon_new&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CopyFeatures_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lst_feats&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; fc_out&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;


&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; __name__ &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'__main__'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; main&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:22:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511318#M29035</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T22:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511319#M29036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Xander and everyone who has contributed, what a great community!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 22:58:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511319#M29036</guid>
      <dc:creator>ErikaMartino</dc:creator>
      <dc:date>2016-08-29T22:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511320#M29037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you everyone, what a great online community!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 23:11:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511320#M29037</guid>
      <dc:creator>ErikaMartino</dc:creator>
      <dc:date>2016-08-29T23:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511321#M29038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone, I tried those techniques and while the union worked, when I dissolved the polygons, it merged into other separate files. Each polygon is a walkability buffer network, and I need to keep them separate. I want to create a "solid" buffer so that I can analyze other factors such as the amount of PT stops within the buffer. I have eliminate polygon which I also tried and didn't seem to work. Will the python code troubleshoot this do you think?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 23:16:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511321#M29038</guid>
      <dc:creator>ErikaMartino</dc:creator>
      <dc:date>2016-08-29T23:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511322#M29039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have several questions, but it would probably be easier if you could attach a sample&amp;nbsp;featureclass of what you have. I can run the code and send you back the result, and then it will probably be easier to discuss what needs to be changed and&amp;nbsp;it can be changed into a tool so you can run it easily.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the things that is not entirely clear to me is that it seems you have overlap in the input polygons:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/218562_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;In the result you posted it seems to be merged into a "single" features:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/218563_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;Is that what you want?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 00:58:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511322#M29039</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-08-30T00:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511323#M29040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander, which is why I suggested the buffer out with dissolve, buffer in. &amp;nbsp;And if you look at the very top, a piece that wasn't initially connected is in the 'desired' output. &amp;nbsp;Your code works, but it doesn't give the level of generalization that is implied... I guess it is the choice between the various options that have been proposed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 01:07:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511323#M29040</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-30T01:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511324#M29041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem with a negative buffer following a positive buffer, is that the geometry will change. Not sure if that&amp;nbsp;will yield the desired result. Best option IMHO is to have a look at an actual featureclass and get a better understanding of the situation.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 01:14:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511324#M29041</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-08-30T01:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: I need to convert a network buffer polygon (that has gaps) into a solid polygon that extends to the maximum edge?</title>
      <link>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511325#M29042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;true... but the area above your blue oval in the second image is what got me thinking about it, the geometry seems quite generalized in spots... but that type of generalization could be readily done after the holes are removed, rather than relying on buffering to close them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 01:30:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/i-need-to-convert-a-network-buffer-polygon-that/m-p/511325#M29042</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-30T01:30:55Z</dc:date>
    </item>
  </channel>
</rss>

