<?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: Comparing Monthly Parcel Update to find changes in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1659311#M45785</link>
    <description>&lt;P&gt;Take a look at some example code I wrote to check over features. The output is a fgdb table that contains the change and whatever unique identifier, which you could then run a join on or just use the information from the table. Not sure if this would be helpful or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/AustinNWUD/gis-python-resources/tree/main/featureComparison" target="_blank"&gt;https://github.com/AustinNWUD/gis-python-resources/tree/main/featureComparison&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Oct 2025 14:04:00 GMT</pubDate>
    <dc:creator>AustinAverill</dc:creator>
    <dc:date>2025-10-21T14:04:00Z</dc:date>
    <item>
      <title>Comparing Monthly Parcel Update to find changes</title>
      <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658209#M45771</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am attempting to find a quicker way to identify Parcels that update on a monthly basis. For some backstory, I work at a local government who doesn't manage our Parcels in-house and get a monthly update from the County.&lt;/P&gt;&lt;P&gt;I would like assistance in identifying a workflow that will use the APN (not ObjectID) to compare the feature with the newly downloaded datasets. This will be used to show changes in a particular feature whether that be any of the following, new APNs, missing APNs, or geometry changes in identical APNs&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 19:27:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658209#M45771</guid>
      <dc:creator>Amarz</dc:creator>
      <dc:date>2025-10-15T19:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Monthly Parcel Update to find changes</title>
      <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658223#M45772</link>
      <description>&lt;P&gt;Have you taken a look at this tool in Pro?&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/feature-compare.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/feature-compare.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It may help you obtain the information that you are looking for.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 19:52:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658223#M45772</guid>
      <dc:creator>George_Thompson</dc:creator>
      <dc:date>2025-10-15T19:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Monthly Parcel Update to find changes</title>
      <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658265#M45774</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/567"&gt;@George_Thompson&lt;/a&gt;&amp;nbsp;Yes, I have and initially was excited for this as on option. However, I am having troubles with this, as it returns the comparison based on the ObjectID. Because the ObjectID is not maintained throughout the process of integrating the dataset with my own, I have not been able to utilize this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking back at how the data is received, it also does not maintain ObjectIDs throughout the same parcel from consecutive updates.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 21:25:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658265#M45774</guid>
      <dc:creator>Amarz</dc:creator>
      <dc:date>2025-10-15T21:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Monthly Parcel Update to find changes</title>
      <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658391#M45776</link>
      <description>&lt;P&gt;Are you looking to update a local layer of parcels with the changes or really quickly produce a table of APN's that have changed between the previous dataset and the new dataset that your stakeholders can reference?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 12:39:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658391#M45776</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-10-16T12:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Monthly Parcel Update to find changes</title>
      <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658557#M45777</link>
      <description>&lt;P&gt;I've had good experiences with leveraging an SHA-1 hash of the non-key important data*, storing the hashes with the actual primary key in a parallel table.&amp;nbsp; Due to the nature of the data, I've sometimes converted the data to only a few significant digits, then hashed that (to enable "fuzzy matching", when 3.71 -&amp;gt; 3.72 or 3.68 is not significant, but 8.23 is). Recently I've stored the geometry and non-geometry&amp;nbsp;hashes separately, and have even been able to match rows without a useful rowid key by inverting the hash dictionary spanning tens of millions of features, so that hashes could resolve feature matching at 85-97% accuracy.&lt;/P&gt;&lt;P&gt;Unfortunately, I can't release my code without&amp;nbsp; approval. And in order to make this work , you need to&amp;nbsp;&lt;BR /&gt;be really comfortable with endian integer and floating-pint storage representations. I can say the core&lt;BR /&gt;code is a set of encoder functions (one for each supported type), which is stored as a bytearray sequence, that is fed into a core Python hashing function. Use of SHA-1 can generate safety warnings, but using it&lt;BR /&gt;for hashing (not cryptographic) purposes is perfectly safe.&lt;BR /&gt;&lt;BR /&gt;- V&lt;BR /&gt;---&lt;/P&gt;&lt;P&gt;*Unimportant data would include a URL that incorporates the primary key and another column, which could be recomputed (or changed at will)&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 20:15:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1658557#M45777</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2025-10-16T20:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Monthly Parcel Update to find changes</title>
      <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1659302#M45783</link>
      <description>&lt;P&gt;Thanks for the idea Vince, however, most of what you said went over my head so I do think that is a viable option for me.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 13:54:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1659302#M45783</guid>
      <dc:creator>Amarz</dc:creator>
      <dc:date>2025-10-21T13:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Monthly Parcel Update to find changes</title>
      <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1659303#M45784</link>
      <description>&lt;P&gt;We update on a monthly basis, the reason for identifying changes between existing and current dataset has to do with our Permitting System and how it deals with changes in APN.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 13:55:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1659303#M45784</guid>
      <dc:creator>Amarz</dc:creator>
      <dc:date>2025-10-21T13:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Monthly Parcel Update to find changes</title>
      <link>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1659311#M45785</link>
      <description>&lt;P&gt;Take a look at some example code I wrote to check over features. The output is a fgdb table that contains the change and whatever unique identifier, which you could then run a join on or just use the information from the table. Not sure if this would be helpful or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/AustinNWUD/gis-python-resources/tree/main/featureComparison" target="_blank"&gt;https://github.com/AustinNWUD/gis-python-resources/tree/main/featureComparison&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 14:04:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/comparing-monthly-parcel-update-to-find-changes/m-p/1659311#M45785</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-10-21T14:04:00Z</dc:date>
    </item>
  </channel>
</rss>

