<?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: Buffer Shape in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839441#M3722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have 'ProSnippets' as part of the wiki at&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https://github.com/esri/arcgis-pro-sdk/wiki" rel="nofollow" target="_blank"&gt;https://github.com/esri/arcgis-pro-sdk/wiki&lt;/A&gt;&lt;SPAN&gt; next to the concepts.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the geometry snippets at&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geometry" rel="nofollow" target="_blank"&gt;https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geometry&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Aug 2015 23:20:23 GMT</pubDate>
    <dc:creator>ThomasEmge</dc:creator>
    <dc:date>2015-08-20T23:20:23Z</dc:date>
    <item>
      <title>Buffer Shape</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839438#M3719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to buffer a&amp;nbsp; polygon with the arcgispro sdk.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is basic concept in arcobjects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; pTopo = myFeature.Shape &lt;SPAN style="color: blue;"&gt;as&lt;/SPAN&gt; ITopologicalOperator;&lt;/P&gt;&lt;P&gt;IPolygon pOutPoly = (IPolygon)pTopo.Buffer(dblBufDis);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is most efficient way to do this with arcgispro sdk?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 12:39:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839438#M3719</guid>
      <dc:creator>mikeharol1</dc:creator>
      <dc:date>2015-08-20T12:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Buffer Shape</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839439#M3720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The buffer snippet boils down to something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Consolas;"&gt;using&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt; ArcGIS.Core.Geometry;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2b91af; font-size: 10pt; font-family: Consolas;"&gt;QueuedTask&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;.Run(() =&amp;gt; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Consolas;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt; bufferGeometry = &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: 10pt; font-family: Consolas;"&gt;GeometryEngine&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;.Buffer(feature.GetShape(), dblBufDis);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;});&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 14:56:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839439#M3720</guid>
      <dc:creator>ThomasEmge</dc:creator>
      <dc:date>2015-08-20T14:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Buffer Shape</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839440#M3721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks.&amp;nbsp; My snippets do not appear to be available in the IDE.&amp;nbsp; should they be available after installing sdk?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 19:34:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839440#M3721</guid>
      <dc:creator>mikeharol1</dc:creator>
      <dc:date>2015-08-20T19:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: Buffer Shape</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839441#M3722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have 'ProSnippets' as part of the wiki at&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https://github.com/esri/arcgis-pro-sdk/wiki" rel="nofollow" target="_blank"&gt;https://github.com/esri/arcgis-pro-sdk/wiki&lt;/A&gt;&lt;SPAN&gt; next to the concepts.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the geometry snippets at&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geometry" rel="nofollow" target="_blank"&gt;https://github.com/esri/arcgis-pro-sdk/wiki/ProSnippets-Geometry&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 23:20:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839441#M3722</guid>
      <dc:creator>ThomasEmge</dc:creator>
      <dc:date>2015-08-20T23:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Buffer Shape</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839442#M3723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, that's a big help, guess i should have known about that resource.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 13:14:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/buffer-shape/m-p/839442#M3723</guid>
      <dc:creator>mikeharol1</dc:creator>
      <dc:date>2015-08-21T13:14:18Z</dc:date>
    </item>
  </channel>
</rss>

