<?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: Where is Smooth geometry in the SDK? in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543728#M12136</link>
    <description>&lt;P&gt;Hi Narelle,&lt;/P&gt;&lt;P&gt;Thank's for replying to this thread - I really appreciate it.&amp;nbsp; Good to know Smooth is in the pipeline.&amp;nbsp; I'll be watching out for it at 3.5.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Mon, 30 Sep 2024 07:54:41 GMT</pubDate>
    <dc:creator>DominicRorke2</dc:creator>
    <dc:date>2024-09-30T07:54:41Z</dc:date>
    <item>
      <title>Where is Smooth geometry in the SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543120#M12125</link>
      <description>&lt;P&gt;Hi, I'm wanting to call the 'Smooth' function via the API, but can not find it anywhere.&lt;/P&gt;&lt;P&gt;By 'Smooth', I'm refering to the functionality that in ArcObjects used to be IPolyCurve.Smooth, or in ArcPro GUI can be run by selecting 'Generalize' and then selecting the 'Smooth' radio button.&amp;nbsp; It smooths selected fetures by applying bezier curves.&lt;/P&gt;&lt;P&gt;I see there is a 'Smooth' Geoprocessing function, but that is of no use.&amp;nbsp; This needs to be applied as part of an edit operation.&lt;/P&gt;&lt;P&gt;Greatly appreciate if someone can point me in the right direction!&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 16:48:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543120#M12125</guid>
      <dc:creator>DominicRorke2</dc:creator>
      <dc:date>2024-09-26T16:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Where is Smooth geometry in the SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543195#M12126</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I can suggest you to use geoprocessing tool &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/cartography/smooth-line.htm" target="_self"&gt;SmoothLine&lt;/A&gt;. It is not simple way but it will work. Select polyline in layer and call geoprocessing tool. Then open output feature class and search for first element.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 19:39:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543195#M12126</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2024-09-26T19:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Where is Smooth geometry in the SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543344#M12127</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;, thanks for taking the time to reply.&amp;nbsp; I'm looking for a code solution (hence posting in this Pro SDK forum).&amp;nbsp; I'm looking for a method in the Pro API that will smooth input geometries using Bezier curves.&lt;/P&gt;&lt;P&gt;For example, EditOperation class contains many methods for editing &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic9482.html)," target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic9482.html&amp;nbsp;&lt;/A&gt;&lt;SPAN&gt;(such as Clip, Explode, Modify, Reshape etc), so I expected to maybe find smooth here maybe?&amp;nbsp; But no.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The other likely namespace would be &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic7842.html" target="_self"&gt;ArcGIS.Core.Geometr&lt;/A&gt;y, but I can't see Smooth there either.&amp;nbsp; It includes the GeometryEngine Class which has methods to Densify, Generalize (same as Simplify in the ArcPro GUI), and many others, but still there is no smooth.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 08:28:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543344#M12127</guid>
      <dc:creator>DominicRorke2</dc:creator>
      <dc:date>2024-09-27T08:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Where is Smooth geometry in the SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543362#M12128</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Why don't you want to call geoprocessing tool from code? There is no help on calling specific tool from ArcGIS Pro API, but there are many samples:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Geoprocessing" target="_blank" rel="noopener"&gt;arcgis-pro-sdk-community-samples/Geoprocessing at master · Esri/arcgis-pro-sdk-community-samples · GitHub&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;P.s There is Generalize method on &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic8235.html" target="_self"&gt;GeometryEngine&lt;/A&gt;, but I don't know if it fits for your workflow.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 10:24:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543362#M12128</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2024-09-27T10:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Where is Smooth geometry in the SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543416#M12129</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As you point out, geoprocessing tools output a new Feature Class.&amp;nbsp; This is of no use to me as I need to edit a feature directly within an edit session.&lt;/P&gt;&lt;P&gt;The Generalize method on GeometryEngine is not 'Smooth'.&amp;nbsp;&amp;nbsp;What Smooth did in ArcMap, and does in ArcPro (Edit Tools &amp;gt; Generalization &amp;gt; 'Smooth' radio button), is turn a jaggedly drawn feature into a beautifully smooth feature by applying bezier curves to each segment.&amp;nbsp; This is what I'm after.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 14:28:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543416#M12129</guid>
      <dc:creator>DominicRorke2</dc:creator>
      <dc:date>2024-09-27T14:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Where is Smooth geometry in the SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543686#M12133</link>
      <description>&lt;P&gt;Hi Dominic,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately we do not have the Smooth function available in the Geometry or Editing APIs as you've pointed out.&amp;nbsp; &amp;nbsp; I've added an issue to have it added to the Geometry API on the GeometryEngine object for the next release.&amp;nbsp; This will be the 3.5 release as we are in the final stages of 3.4 right now which is due to be released shortly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Narelle&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 01:22:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543686#M12133</guid>
      <dc:creator>NarelleChedzey</dc:creator>
      <dc:date>2024-09-30T01:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Where is Smooth geometry in the SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543728#M12136</link>
      <description>&lt;P&gt;Hi Narelle,&lt;/P&gt;&lt;P&gt;Thank's for replying to this thread - I really appreciate it.&amp;nbsp; Good to know Smooth is in the pipeline.&amp;nbsp; I'll be watching out for it at 3.5.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 07:54:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/where-is-smooth-geometry-in-the-sdk/m-p/1543728#M12136</guid>
      <dc:creator>DominicRorke2</dc:creator>
      <dc:date>2024-09-30T07:54:41Z</dc:date>
    </item>
  </channel>
</rss>

