<?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: Finding point feature changes in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/finding-point-feature-changes/m-p/347860#M27283</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If neither of these tools meets your needs, you may have to "roll your own" using python.&lt;/P&gt;&lt;P&gt;But data comparisons can be tricky (there is so much to compare...).&lt;/P&gt;&lt;P&gt;But the geometry equals and other methods for geometry do enable you to do this. And if you structure it correctly, it might not be that slow.&lt;/P&gt;&lt;P&gt;If you do a spatial joint between the 2 sets of features first, then compare the actual geometries using the method....&lt;/P&gt;&lt;P&gt;Then, the attributes. Can get complicated...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Sep 2016 16:33:14 GMT</pubDate>
    <dc:creator>NeilAyres</dc:creator>
    <dc:date>2016-09-19T16:33:14Z</dc:date>
    <item>
      <title>Finding point feature changes</title>
      <link>https://community.esri.com/t5/python-questions/finding-point-feature-changes/m-p/347859#M27282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to solve this issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 2 feature classes, with 2 states of the same point features. I'm not trying to find which specific features have changed by comparing (position or attribution).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found those tools:&lt;/P&gt;&lt;P&gt;1 -&amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/detect-feature-changes.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/detect-feature-changes.htm"&gt;Detect Feature Changes—Data Management toolbox | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2 -&amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/feature-compare.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/feature-compare.htm"&gt;Feature Compare—Data Management toolbox | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but they don't help me in my case, as:&lt;/P&gt;&lt;P&gt;1 - only works with lines&lt;/P&gt;&lt;P&gt;2 - only compares the whole feature class, but does not report which features have changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way around this without explicitly writing a method for this (which will be super slow)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any input welcome!&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 16:18:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/finding-point-feature-changes/m-p/347859#M27282</guid>
      <dc:creator>MatthiasBuehler</dc:creator>
      <dc:date>2016-09-19T16:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Finding point feature changes</title>
      <link>https://community.esri.com/t5/python-questions/finding-point-feature-changes/m-p/347860#M27283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If neither of these tools meets your needs, you may have to "roll your own" using python.&lt;/P&gt;&lt;P&gt;But data comparisons can be tricky (there is so much to compare...).&lt;/P&gt;&lt;P&gt;But the geometry equals and other methods for geometry do enable you to do this. And if you structure it correctly, it might not be that slow.&lt;/P&gt;&lt;P&gt;If you do a spatial joint between the 2 sets of features first, then compare the actual geometries using the method....&lt;/P&gt;&lt;P&gt;Then, the attributes. Can get complicated...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 16:33:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/finding-point-feature-changes/m-p/347860#M27283</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-09-19T16:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Finding point feature changes</title>
      <link>https://community.esri.com/t5/python-questions/finding-point-feature-changes/m-p/347861#M27284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried using the '@SHAPEXY' to search the geometries of the points?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, if you have a unique ID associated with each point, you can do loop through each record and append the SHAPEXY with the uniqueID to a list. &amp;nbsp;Then do the same for the other feature and see where the two lists differ.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 16:02:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/finding-point-feature-changes/m-p/347861#M27284</guid>
      <dc:creator>MitchHolley1</dc:creator>
      <dc:date>2016-09-20T16:02:17Z</dc:date>
    </item>
  </channel>
</rss>

