<?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: Separate Overlapping Points with Starburst Dispersion, Possible? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1366344#M76961</link>
    <description>&lt;P&gt;If I had this task, I'd probably use the Selection Chip to select a single point from the stack.&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Activate the Select tool (the one embedded in the Move tool if you want to move a point immediately)&lt;/LI&gt;&lt;LI&gt;Single click on the stack of points. The Selection Chip appears on the map near the points.&lt;/LI&gt;&lt;LI&gt;Click the dropdown to reveal the list of stacked points. The label for each point will come from the Display Expression so change that to something that is unique about the points so you know which one to pick.&lt;/LI&gt;&lt;LI&gt;Once you pick one from the list. Move it.&lt;/LI&gt;&lt;LI&gt;Repeat.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Scott_Harris_0-1704385686555.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/90526i8B28DB06137BDDCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Scott_Harris_0-1704385686555.png" alt="Scott_Harris_0-1704385686555.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Your idea of dispersing them is good too, but this might be another option to look into.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Jan 2024 16:34:42 GMT</pubDate>
    <dc:creator>Scott_Harris</dc:creator>
    <dc:date>2024-01-04T16:34:42Z</dc:date>
    <item>
      <title>Separate Overlapping Points with Starburst Dispersion, Possible?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1365934#M76905</link>
      <description>&lt;P class=""&gt;Hello everyone,&lt;/P&gt;&lt;P class=""&gt;I'm looking for way to separating overlapping points in a dataset.&lt;/P&gt;&lt;P class=""&gt;Here's the context: I have about 13,000 points representing mine locations across the United States. However, around 4,500 of these points are not placed at the actual mine sites but at the center of the county where the majority of the mine is located. This was done when the precise location of the mine was unknown.&lt;/P&gt;&lt;P class=""&gt;My task is to relocate these points to their accurate positions, based on local knowledge. The challenge arises with the overlapping points at the county centers, sometimes over 50 at a single location, making it difficult to select the correct one. I am envisioning a solution where points with identical coordinates could automatically spread out, ideally in a starburst pattern from the central point. This would make it easier to select, and then move each point to its true location.&lt;/P&gt;&lt;P class=""&gt;I'm not looking for binning or grouping solutions, a true tool that moves points with identical lat and long position is desired. Does anyone know of a method that could achieve this?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2024 18:27:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1365934#M76905</guid>
      <dc:creator>JonJones1</dc:creator>
      <dc:date>2024-01-03T18:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Overlapping Points with Starburst Dispersion, Possible?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1365980#M76912</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;have you tried this tools:&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/cartography/disperse-markers.htm" target="_blank"&gt;Disperse Markers (Cartography)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2024 19:31:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1365980#M76912</guid>
      <dc:creator>nabaz-gharib</dc:creator>
      <dc:date>2024-01-03T19:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Overlapping Points with Starburst Dispersion, Possible?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1366302#M76955</link>
      <description>&lt;P&gt;It is possible to use Python to adjust the position of points. Look at the documentation for arcpy.da.UpdateCursor&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/3.1/arcpy/data-access/updatecursor-class.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/3.1/arcpy/data-access/updatecursor-class.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;An UpdateCursor will respect a selection, so you could select a stack of points and run code to update their geometries using&amp;nbsp;&lt;A href="mailto:SHAPE@X" target="_blank"&gt;SHAPE@X&lt;/A&gt;&amp;nbsp;and &lt;A href="mailto:SHAPE@Y" target="_blank"&gt;SHAPE@Y.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Reading Geometries:&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/3.1/arcpy/get-started/reading-geometries.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/3.1/arcpy/get-started/reading-geometries.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Writing Geometries:&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/3.1/arcpy/get-started/writing-geometries.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/3.1/arcpy/get-started/writing-geometries.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You could do this with the feature class on your map, and run the code in a Notebook in ArcGIS Pro.&lt;/P&gt;&lt;P&gt;The Count Overlapping features tool could help you find the locations where you have point stacks.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/count-overlapping-features.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/count-overlapping-features.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 15:43:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1366302#M76955</guid>
      <dc:creator>BobBooth1</dc:creator>
      <dc:date>2024-01-04T15:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Overlapping Points with Starburst Dispersion, Possible?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1366322#M76957</link>
      <description>&lt;P&gt;Here is an example of how you might go about it.&lt;/P&gt;&lt;P&gt;The feature layer myPoints on the map has a stack of points at Durham, NC (along with various other points at other cities).&lt;/P&gt;&lt;P&gt;Using the selection tool, I selected the stack of points. You can see in the attributes that there are several selected features.&lt;/P&gt;&lt;P&gt;In a Notebook in ArcGIS Pro, I specify the layer on the map I want to work with and assign it to the variable "fc".&lt;/P&gt;&lt;P&gt;I make a list of the fields I'm interested in using, &lt;A href="mailto:SHAPE@Y" target="_blank"&gt;SHAPE@X and SHAPE@Y.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I run a Search Cursor on the selection to print the coordinates. I also grab the coordinate values and assign them to variables to use later (when the loop stops, the values are those of the last point).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="get_stack_of_points_selection_coordinates.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/90515iEC591EC8AA627C65/image-size/large?v=v2&amp;amp;px=999" role="button" title="get_stack_of_points_selection_coordinates.png" alt="get_stack_of_points_selection_coordinates.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the next cell of I my notebook, I use an Update Cursor to move each of the points to make a diagonal line of points.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="incrementally_move_points_away_from_stack.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/90518i2C780D0342B89D5E/image-size/large?v=v2&amp;amp;px=999" role="button" title="incrementally_move_points_away_from_stack.png" alt="incrementally_move_points_away_from_stack.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I take the starting values from the variables I grabbed for the coordinates in the previous cell.&lt;/P&gt;&lt;P&gt;In the cursor, I set row[0], the value of X coordinate, to the value of the X coordinate I grabbed before. Then I update that value by adding -0.0001 degrees (this data is in decimal degrees... if your data is in planar units you would add a planar distance, like 1 meter, or 10 feet).&lt;/P&gt;&lt;P&gt;I also do the same thing with the row[1] value, for the Y coordinate (adding a similar amount).&lt;/P&gt;&lt;P&gt;Then I update the row (the current feature in the cursor) to use the new values, and the loop happens again, for each of the selected features.&lt;/P&gt;&lt;P&gt;The result is a diagonal line of points starting at the original location.&lt;/P&gt;&lt;P&gt;This is a &lt;EM&gt;little &lt;STRONG&gt;dangerous&lt;/STRONG&gt;&lt;/EM&gt;, as it is altering your data. I would strongly recommend making a copy to test on. If you forget to select a specific stack of features and run the code, the code will run on&lt;STRONG&gt; &lt;U&gt;all&lt;/U&gt; &lt;/STRONG&gt;of the points in your feature class, and all 13K points (including good mine locations) will be rearranged into a nice line (and the code might fail when the values get too large).&lt;/P&gt;&lt;P&gt;It does show how you can manipulate point geometries with Python.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 16:12:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1366322#M76957</guid>
      <dc:creator>BobBooth1</dc:creator>
      <dc:date>2024-01-04T16:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Overlapping Points with Starburst Dispersion, Possible?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1366344#M76961</link>
      <description>&lt;P&gt;If I had this task, I'd probably use the Selection Chip to select a single point from the stack.&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Activate the Select tool (the one embedded in the Move tool if you want to move a point immediately)&lt;/LI&gt;&lt;LI&gt;Single click on the stack of points. The Selection Chip appears on the map near the points.&lt;/LI&gt;&lt;LI&gt;Click the dropdown to reveal the list of stacked points. The label for each point will come from the Display Expression so change that to something that is unique about the points so you know which one to pick.&lt;/LI&gt;&lt;LI&gt;Once you pick one from the list. Move it.&lt;/LI&gt;&lt;LI&gt;Repeat.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Scott_Harris_0-1704385686555.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/90526i8B28DB06137BDDCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Scott_Harris_0-1704385686555.png" alt="Scott_Harris_0-1704385686555.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Your idea of dispersing them is good too, but this might be another option to look into.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 16:34:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/separate-overlapping-points-with-starburst/m-p/1366344#M76961</guid>
      <dc:creator>Scott_Harris</dc:creator>
      <dc:date>2024-01-04T16:34:42Z</dc:date>
    </item>
  </channel>
</rss>

