<?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 Detect arc in st_geometry in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738836#M271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have two features class (multipolygon and multiline) with ST_GEOMETRY format in a 9.3 geodatabase.&lt;/P&gt;&lt;P&gt;How to detect features that contains arcs using sde ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Apr 2017 08:43:02 GMT</pubDate>
    <dc:creator>LOU_Sud-OuestThales_Services</dc:creator>
    <dc:date>2017-04-10T08:43:02Z</dc:date>
    <item>
      <title>Detect arc in st_geometry</title>
      <link>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738836#M271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have two features class (multipolygon and multiline) with ST_GEOMETRY format in a 9.3 geodatabase.&lt;/P&gt;&lt;P&gt;How to detect features that contains arcs using sde ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 08:43:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738836#M271</guid>
      <dc:creator>LOU_Sud-OuestThales_Services</dc:creator>
      <dc:date>2017-04-10T08:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Detect arc in st_geometry</title>
      <link>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738837#M272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure of an SQL-based approach, but you can use an ArcPy search cursor:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;fc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# path to feature class&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"OID@"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"SHAPE@"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; oid&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; shape &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"curve"&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; shape&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;JSON&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; oid&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:27:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738837#M272</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-12T07:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Detect arc in st_geometry</title>
      <link>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738838#M273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm under ArcGIS 9.3.1, so I tried using ArcgisScripting.&lt;/P&gt;&lt;P&gt;But Geometry object seems not to have ".JSON" property.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 17:00:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738838#M273</guid>
      <dc:creator>LOU_Sud-OuestThales_Services</dc:creator>
      <dc:date>2017-04-10T17:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Detect arc in st_geometry</title>
      <link>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738839#M274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't realize your client was also stuck back at 9.3.x.&amp;nbsp; Do you have access to a newer client that can connect to the 9.3 geodatabase?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have to stick with ArcGIS 9.3.1 as a client, I will have to think about options.&amp;nbsp; It may be you could use comtypes or a similar package to access ArcObjects directly from Python.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 17:28:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738839#M274</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-04-10T17:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Detect arc in st_geometry</title>
      <link>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738840#M275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, I will try using ArcObjects and ComTypes.&lt;/P&gt;&lt;P&gt;But how to test an ArcObject IGeometry (polyline or polygon) contains arcs ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 12:08:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/detect-arc-in-st-geometry/m-p/738840#M275</guid>
      <dc:creator>LOU_Sud-OuestThales_Services</dc:creator>
      <dc:date>2017-04-12T12:08:02Z</dc:date>
    </item>
  </channel>
</rss>

