<?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: Edit Function to explode multi-part feature in silverlight in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355667#M9097</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks.&amp;nbsp; That is a really good idea for checking ring orientation.&amp;nbsp; That should make it real easy.&amp;nbsp; That solves my problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;By the way, if the ArcGIS Server team ever runs out of things to do, I would not mind having an Explode Multi-Part feature option for the Geometry Service.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jan 2012 19:40:18 GMT</pubDate>
    <dc:creator>ArtUllman</dc:creator>
    <dc:date>2012-01-06T19:40:18Z</dc:date>
    <item>
      <title>Edit Function to explode multi-part feature in silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355665#M9095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I need to be able to provide a function for users to explode multi-part polygons in a silverlight application.&amp;nbsp; I am using the Editor class and Geometry services for all of my other functions.&amp;nbsp; I do not see any built-in functions for exploding multi-part features either in the Editor Class, or in the Geometry Service.&amp;nbsp; The only way I can think to do this manually would be to grab the point collections, and check to see if they are clockwise or counter-clockwise so I can tell if the point collections are donuts or multi-part features.&amp;nbsp; Unfortunatelly, I don't see any built-in functions that can tell me the ring orientation.&amp;nbsp; I know that nettopology suites has some libraries, that I could possibly look into.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What is the best way for me to explode a multi-part feature in Silverlight?&amp;nbsp; It sure would be nice if the geometry service or editor class had this functionality built-in.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 18:14:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355665#M9095</guid>
      <dc:creator>ArtUllman</dc:creator>
      <dc:date>2012-01-06T18:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Function to explode multi-part feature in silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355666#M9096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes you would have to do this manually so you are on the right track.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For ring orientation a simple method is to look for the top-most point (ie highest Y value) in a ring, and see of the previous point is to the left or right of it. (There's are some edgecases: Directly below=&amp;gt; check previous point. Is first vertex, check last vertex instead of previous).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 18:57:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355666#M9096</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2012-01-06T18:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Function to explode multi-part feature in silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355667#M9097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks.&amp;nbsp; That is a really good idea for checking ring orientation.&amp;nbsp; That should make it real easy.&amp;nbsp; That solves my problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;By the way, if the ArcGIS Server team ever runs out of things to do, I would not mind having an Explode Multi-Part feature option for the Geometry Service.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 19:40:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355667#M9097</guid>
      <dc:creator>ArtUllman</dc:creator>
      <dc:date>2012-01-06T19:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Function to explode multi-part feature in silverlight</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355668#M9098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, Art&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;when I have many user drawn graphics which I need to use for query or clip, I simplify them first, otherwsie, I get uncorrect results because of drawing directions. I am not for sure this&amp;nbsp; will help you situation. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good Luck.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Demin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 20:16:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/edit-function-to-explode-multi-part-feature-in/m-p/355668#M9098</guid>
      <dc:creator>DeminHu</dc:creator>
      <dc:date>2012-01-06T20:16:03Z</dc:date>
    </item>
  </channel>
</rss>

