<?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: Spatial intersect types in ArcGIS AppStudio Questions</title>
    <link>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848145#M2719</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, take that back. 'touches' doesn't achieve the same as 'disjoint'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it appears that using Kaushik's approach is possible in the new Runtime v100.x, but not in the old Runtime.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Oct 2017 22:04:58 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2017-10-13T22:04:58Z</dc:date>
    <item>
      <title>Spatial intersect types</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848142#M2716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I realise this isn't strictly an AppStudio question, maybe more a Runtime question in general....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When running a query with a spatial relationship, there doesn't appear to be a spatial relationship that returns features that not only intersect, but where the area of intersection is greater than zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SpatialRelationshipEnvelopeIntersects&amp;nbsp; is closest, but it also returns features that 'touch', i.e. they share a common boundary, although nothing actually overlaps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Currently I have to find this by first running the query using the 'intersects' method, then stepping through the results one by one and checking if the intersection of each feature geometry with the query geometry is actually greater than zero.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So I can achieve it, but I can't help thinking there should be a query type that achieves it in one step.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any ideas from anyone?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Paul&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2017 23:24:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848142#M2716</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2017-10-12T23:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial intersect types</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848143#M2717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;Did you try (&lt;SPAN&gt;SpatialRelationshipEnvelopeIntersects&lt;/SPAN&gt; AND&amp;nbsp; !Enums.SpatialRelationshipDisjoint)?&lt;/P&gt;&lt;P&gt;As per the help, Enums.SpatialRelationshipDisjoint supposed to tell if the intersection is empty or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kaushik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2017 17:23:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848143#M2717</guid>
      <dc:creator>KaushikMysorekar</dc:creator>
      <dc:date>2017-10-13T17:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial intersect types</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848144#M2718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Kaushik. yes it looks like you're right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fyi, 'disjoint' doesn't seem to be in old runtime, the equivalent seems to be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #9acfd6;"&gt;query&lt;/SPAN&gt;.spatialRelationship&lt;SPAN style="color: #bec0c2;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #bec0c2;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #66a334;"&gt;Enums&lt;/SPAN&gt;.SpatialRelationshipEnvelopeIntersects&lt;SPAN style="color: #bec0c2;"&gt; &lt;/SPAN&gt;&amp;amp;&lt;SPAN style="color: #bec0c2;"&gt; &lt;/SPAN&gt;!&lt;SPAN style="color: #66a334;"&gt;Enums&lt;/SPAN&gt;.SpatialRelationshipTouches&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2017 21:05:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848144#M2718</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2017-10-13T21:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial intersect types</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848145#M2719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, take that back. 'touches' doesn't achieve the same as 'disjoint'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it appears that using Kaushik's approach is possible in the new Runtime v100.x, but not in the old Runtime.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2017 22:04:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/spatial-intersect-types/m-p/848145#M2719</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2017-10-13T22:04:58Z</dc:date>
    </item>
  </channel>
</rss>

