<?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 Analysis Identifying Repeated Vegetation Enquiries in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650966#M98974</link>
    <description>&lt;P&gt;I did intially use the find Idenitical tool like you described but it doesn't find all the records for some reason, thats why I ended up using excel in the end.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for linking to the aggregrate points tool, will try using the free aggregrate points tool as I don't have access to the cartography one.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Sep 2025 10:19:01 GMT</pubDate>
    <dc:creator>Fenland</dc:creator>
    <dc:date>2025-09-17T10:19:01Z</dc:date>
    <item>
      <title>Spatial Analysis Identifying Repeated Vegetation Enquiries</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650662#M98949</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Identifying Repeated Vegetation Enquiries Over Time &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Context&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I’m working with a dataset of over&amp;nbsp;80,000 vegetation-related enquiries&amp;nbsp;submitted by the public over a&amp;nbsp;10-year period. Each enquiry is represented as a point with the following attributes:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Easting&lt;/LI&gt;&lt;LI&gt;Northing&lt;/LI&gt;&lt;LI&gt;Logged Date&amp;nbsp;(with time)&lt;/LI&gt;&lt;LI&gt;Enquiry Subject Name&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Objective&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;My goal is to identify&amp;nbsp;repeated enquiries occurring&amp;nbsp;at least twice&amp;nbsp;over the time period with at least a year between enquiries. I want to find all repeat enquires to get a sense of the overall picture and then filter/reduce the overall number down to just a single enquiry to get a sense of how many I'm dealing with.&lt;/P&gt;&lt;P&gt;This will help reveal patterns of recurring issues (e.g., persistent vegetation problems) and allow me to&amp;nbsp;filter down to unique cases&amp;nbsp;for further analysis.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Challenges Encountered&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Duplicate Submissions&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Some locations have multiple identical points due to users clicking repeatedly when submitting an enquiry. In some cases, this results in&amp;nbsp;6+ identical points.&lt;/P&gt;&lt;P&gt;Solution:&lt;BR /&gt;I used Excel to remove duplicates based on a combination of:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Enquiry Subject Name&lt;/LI&gt;&lt;LI&gt;Logged Date/Time&lt;/LI&gt;&lt;LI&gt;Easting&lt;/LI&gt;&lt;LI&gt;Northing&lt;/LI&gt;&lt;/UL&gt;&lt;OL&gt;&lt;LI&gt;Inconsistent Terminology &amp;amp; Location Accuracy&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Because the data is submitted by the public:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Terminology varies e.g.,&amp;nbsp;&lt;EM&gt;“Tree Overgrown/Untidy”&lt;/EM&gt;&amp;nbsp;vs&amp;nbsp;&lt;EM&gt;“Vegetation Overhanging”&lt;/EM&gt;&amp;nbsp;may refer to the same issue.&lt;/LI&gt;&lt;LI&gt;Location accuracy varies points may not align precisely with assets, leading to spatial scatter. See screenshot below.&lt;/LI&gt;&lt;/UL&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;LI-SPOILER&gt;&amp;nbsp;&lt;/LI-SPOILER&gt;&lt;P&gt;&lt;STRONG&gt;Methods Used – Image below. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Method 1: Buffer-Based Spatial Join (Blue Points)&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Removed records with null coordinates, subject name, or date.&lt;/LI&gt;&lt;LI&gt;Clipped points to the area of interest.&lt;/LI&gt;&lt;LI&gt;Created a&amp;nbsp;10m buffer&amp;nbsp;around each point.&lt;/LI&gt;&lt;LI&gt;Performed a&amp;nbsp;spatial join&amp;nbsp;between the buffer layer and the original point layer (1-to-many relationship).&lt;/LI&gt;&lt;LI&gt;Dissolved&amp;nbsp;results based on:&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;Enquiry Subject Name (from join)&lt;/LI&gt;&lt;LI&gt;Easting&lt;/LI&gt;&lt;LI&gt;Northing&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;This method helped group nearby points with similar subjects but missed some cases.&lt;/P&gt;&lt;P&gt;Method 2: Python-Based Temporal Filter (Red Points)&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Same initial cleaning and clipping steps.&lt;/LI&gt;&lt;LI&gt;Performed a spatial join.&lt;/LI&gt;&lt;LI&gt;Used a&amp;nbsp;Python script&amp;nbsp;to identify repeated enquiries:&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;Matching Easting, Northing, and Subject Name&lt;/LI&gt;&lt;LI&gt;Logged&amp;nbsp;more than 1 year apart&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;This method captured some cases missed by Method 1 but also failed to group certain most overlapping points.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Visual Comparison&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;As shown in the image below,&amp;nbsp;red points (Method 2)&amp;nbsp;and&amp;nbsp;blue points (Method 1)&amp;nbsp;don’t always overlap. Each method captures different aspects of the problem, and neither is fully comprehensive.&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Next Steps&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Looking for recommendations for improvements and next steps, I could append the 2 datasets and remove the intersecting points but want to look at mistakes I have made or alternative approaches which could highlight repeated enquires I am missing.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 14:37:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650662#M98949</guid>
      <dc:creator>Fenland</dc:creator>
      <dc:date>2025-09-16T14:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Analysis Identifying Repeated Vegetation Enquiries</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650664#M98950</link>
      <description>&lt;P&gt;Don't have permission to upload screenshots mentioned in the post unfortunately.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 14:40:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650664#M98950</guid>
      <dc:creator>Fenland</dc:creator>
      <dc:date>2025-09-16T14:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Analysis Identifying Repeated Vegetation Enquiries</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650670#M98951</link>
      <description>&lt;P&gt;A bit cumbersome at first, but using a combination of both methods would likely provide the best results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In theory, you would use a library like ArcPy or geopandas to create a spatial query based on a buffer for each individual record, then use similar logic applied in your existing python script to systematically identify duplicates within the spatial constraint.&lt;/P&gt;&lt;P&gt;Once you have the data set at a reasonable state, it would be wise to take and automate this process to run somewhat often. In this case, you only need to query and compare records within your listed time constraint (the past year) instead of trying to evaluate against the entire 80,000 record dataset. This would help the process be less resource intensive moving into the future.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finally, if possible you should look to try to implement some sort of constraints, options, etc into the collection method that would allow you to more easily query and evaluate records. This would like like having a dedicated field for complaint type ('Foliage Overburden', 'Dead Tree', etc.) and then another field that allows users to type out comments or descriptions for that complaint type.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 14:52:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650670#M98951</guid>
      <dc:creator>AustinAverill</dc:creator>
      <dc:date>2025-09-16T14:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Analysis Identifying Repeated Vegetation Enquiries</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650681#M98952</link>
      <description>&lt;P&gt;Screenshot 1 link - (&lt;A href="https://postimg.cc/YL3LqxLH)]" target="_blank" rel="noopener nofollow noreferrer ugc"&gt;https://postimg.cc/YL3LqxLH)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Screenshot 2 link - (&lt;A href="https://i.postimg.cc/Xv2DLbtq/Comparison.png)]" target="_blank" rel="noopener nofollow noreferrer ugc"&gt;https://i.postimg.cc/Xv2DLbtq/Comparison.png)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 15:06:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650681#M98952</guid>
      <dc:creator>Fenland</dc:creator>
      <dc:date>2025-09-16T15:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Analysis Identifying Repeated Vegetation Enquiries</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650847#M98954</link>
      <description>&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/find-identical.htm" target="_blank"&gt;Find Identical (Data Management)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;can be used to identify duplicates in attributes and even geometry or some combination thereof.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/cartography/an-overview-of-the-generalization-toolset.htm" target="_blank"&gt;An overview of the Generalization toolset—ArcGIS Pro | Documentation&lt;/A&gt;&amp;nbsp;using&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/cartography/aggregate-points.htm" target="_blank"&gt;Aggregate Points (Cartography)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;might be worth a look as well&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 21:38:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650847#M98954</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2025-09-16T21:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Analysis Identifying Repeated Vegetation Enquiries</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650966#M98974</link>
      <description>&lt;P&gt;I did intially use the find Idenitical tool like you described but it doesn't find all the records for some reason, thats why I ended up using excel in the end.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for linking to the aggregrate points tool, will try using the free aggregrate points tool as I don't have access to the cartography one.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 10:19:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/spatial-analysis-identifying-repeated-vegetation/m-p/1650966#M98974</guid>
      <dc:creator>Fenland</dc:creator>
      <dc:date>2025-09-17T10:19:01Z</dc:date>
    </item>
  </channel>
</rss>

