<?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 Operation does not support curves yet - Exception in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/operation-does-not-support-curves-yet-exception/m-p/231020#M2750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Currently, I am trying to find which features from a layer intersect with a polygon. However when trying to project the feature's geometry or perform a query against it (i.e a query with a spatial relationship against the layer or GeometryEngine.Intersects()), I get the following error: "Not implemented: operation does not support curves yet". From what I can tell, it only throws this exception when the geometry's HasCurves property is true. When this property is false, all queries and projection works as expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there currently a way to perform spatial queries against geometries with curves, or any workarounds? If not, is there any information on when such functionality might be available?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help or information regarding this issue would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Jul 2017 19:31:57 GMT</pubDate>
    <dc:creator>TylerLawson</dc:creator>
    <dc:date>2017-07-12T19:31:57Z</dc:date>
    <item>
      <title>Operation does not support curves yet - Exception</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/operation-does-not-support-curves-yet-exception/m-p/231020#M2750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Currently, I am trying to find which features from a layer intersect with a polygon. However when trying to project the feature's geometry or perform a query against it (i.e a query with a spatial relationship against the layer or GeometryEngine.Intersects()), I get the following error: "Not implemented: operation does not support curves yet". From what I can tell, it only throws this exception when the geometry's HasCurves property is true. When this property is false, all queries and projection works as expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there currently a way to perform spatial queries against geometries with curves, or any workarounds? If not, is there any information on when such functionality might be available?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help or information regarding this issue would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 19:31:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/operation-does-not-support-curves-yet-exception/m-p/231020#M2750</guid>
      <dc:creator>TylerLawson</dc:creator>
      <dc:date>2017-07-12T19:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Operation does not support curves yet - Exception</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/operation-does-not-support-curves-yet-exception/m-p/231021#M2751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really have problems with this limitation as well. Another part of the Runtime, where curves don't work is the&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/net/latest/wpf/api-reference//html/Overload_Esri_ArcGISRuntime_UI_Controls_GeoView_IdentifyLayerAsync.htm" title="https://developers.arcgis.com/net/latest/wpf/api-reference//html/Overload_Esri_ArcGISRuntime_UI_Controls_GeoView_IdentifyLayerAsync.htm"&gt;GeoView.IdentifyLayerAsync Method&lt;/A&gt;&amp;nbsp;- curves are never in the result set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only workaround, I'm aware of, is to simplify the data before using it in the runtime. If you're using the desktop pattern, you can make use of arcpy.Densify_edit() before creating your runtime content. This transforms your curved polygon features to a polygon&amp;nbsp;with lots of interpolation points..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In server workflow, I think there is a server-flag like "SupportsAdvancedGeometry" or similar, which can be set to false to make the server deliver simplified geometries as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully, anyone else comes around with a better workaround that does not involve changing the data beforehand..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 06:25:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/operation-does-not-support-curves-yet-exception/m-p/231021#M2751</guid>
      <dc:creator>JensBuchta</dc:creator>
      <dc:date>2017-07-13T06:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Operation does not support curves yet - Exception</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/operation-does-not-support-curves-yet-exception/m-p/231022#M2752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the response. Unfortunately, due to the way I am&amp;nbsp;accessing data, those workarounds don't work for me currently. However I was able to find a different work-around where instead of utilizing spacial queries that don't support curves (Intersects), you can use one that compares geometries without curves (i.e envelopeIntersects).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This doesn't work perfectly, but it does allow a rough estimate of whether a geometry with curves intersects with a polygon.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 16:40:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/operation-does-not-support-curves-yet-exception/m-p/231022#M2752</guid>
      <dc:creator>TylerLawson</dc:creator>
      <dc:date>2017-07-18T16:40:03Z</dc:date>
    </item>
  </channel>
</rss>

