<?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 Strange result of the SimplifyAsFeature method in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778716#M1047</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I noticed that &lt;A href="https://pro.arcgis.com/en/pro-app/sdk/api-reference/#topic8287.html"&gt;GeometryEngine.SimplifyAsFeature&lt;/A&gt; method produces strange results sometimes. For this polygon:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/370990_pastedImage_1.png" style="width: 620px; height: 416px;" /&gt;&lt;/P&gt;&lt;P&gt;the method produces this result:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/371018_pastedImage_2.png" style="width: 620px; height: 421px;" /&gt;&lt;/P&gt;&lt;P&gt;In my opinion such results are at least unobvious. Can you explain why I get it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've attached the test data.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Sep 2017 07:07:57 GMT</pubDate>
    <dc:creator>MaxMax2</dc:creator>
    <dc:date>2017-09-14T07:07:57Z</dc:date>
    <item>
      <title>Strange result of the SimplifyAsFeature method</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778716#M1047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I noticed that &lt;A href="https://pro.arcgis.com/en/pro-app/sdk/api-reference/#topic8287.html"&gt;GeometryEngine.SimplifyAsFeature&lt;/A&gt; method produces strange results sometimes. For this polygon:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/370990_pastedImage_1.png" style="width: 620px; height: 416px;" /&gt;&lt;/P&gt;&lt;P&gt;the method produces this result:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/371018_pastedImage_2.png" style="width: 620px; height: 421px;" /&gt;&lt;/P&gt;&lt;P&gt;In my opinion such results are at least unobvious. Can you explain why I get it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've attached the test data.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2017 07:07:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778716#M1047</guid>
      <dc:creator>MaxMax2</dc:creator>
      <dc:date>2017-09-14T07:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Strange result of the SimplifyAsFeature method</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778717#M1048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;SimplifyAsFeature removes degenerate segments. A segment is degenerate if its length is less than 2 * sqrt(2) * tolerance of the spatial reference. The spatial reference for your data has tolerance = 2.0E-5, so any segment with length less than 5.657E-5 is degenerate. The length of the two shortest segments in the polygon are 3.3E-5 and 4.3E-5, so they are removed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Annette&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2017 21:27:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778717#M1048</guid>
      <dc:creator>AnnetteLocke</dc:creator>
      <dc:date>2017-09-18T21:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Strange result of the SimplifyAsFeature method</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778718#M1049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Annette,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for explanation! Can you say, this formula is just heuristic or it is something that absolutely right in any case? I'm going to not perform SimplifyAsFeature for this data to preserve those segments since I don't think they are degenerated. Or I should definitely simplify the polygon with this method?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2017 01:40:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778718#M1049</guid>
      <dc:creator>MaxMax2</dc:creator>
      <dc:date>2017-09-19T01:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Strange result of the SimplifyAsFeature method</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778719#M1050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This formula will be used in any case. To store the polygon in the database it has to be simplified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Annette&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2017 21:34:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778719#M1050</guid>
      <dc:creator>AnnetteLocke</dc:creator>
      <dc:date>2017-09-20T21:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Strange result of the SimplifyAsFeature method</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778720#M1051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Annette,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I've attached the test data that is FGDB with unsimplified polygon, so it is definitely can be stored in database without applying the specified formula. Also I'm able to output this polygon to a new feature class without any error. Anyway thanks for information!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2017 01:29:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/strange-result-of-the-simplifyasfeature-method/m-p/778720#M1051</guid>
      <dc:creator>MaxMax2</dc:creator>
      <dc:date>2017-09-21T01:29:35Z</dc:date>
    </item>
  </channel>
</rss>

