<?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: extract a statistic from overlapping features (points / polygons) in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174741#M55235</link>
    <description>&lt;P&gt;I am accepting my own solution for following reasons:&lt;/P&gt;&lt;P&gt;1. getting an unique id via "identical tool" helped me to join it back to the original layer and also to use in the R bridge and perhaps can also be used with python scripts to summarize results based on unique ID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Comparing locations based on x,y which are essentially floating points, this can cause floating point errors if one wishes to use other scripting tools further. I do not know if "identical" tool uses dissolve based on x,y.. then essentially both soltions are the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So idential + dissolve help with further analysis in my opinion.&lt;/P&gt;&lt;P&gt;But thank you Andy.&lt;/P&gt;</description>
    <pubDate>Tue, 17 May 2022 18:52:19 GMT</pubDate>
    <dc:creator>RamB</dc:creator>
    <dc:date>2022-05-17T18:52:19Z</dc:date>
    <item>
      <title>extract a statistic from overlapping features (points / polygons)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174441#M55211</link>
      <description>&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a point layer where multiple points overlap. For example, lets take 3 points at the same location. Each point has an attribute X with some number value (integer). What I want to do is, summarize that location. Meaning have only one point at that location instead of 3, and this one resulting point&amp;nbsp; should get the maximum value of the 3 overlapping points.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 05:30:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174441#M55211</guid>
      <dc:creator>RamB</dc:creator>
      <dc:date>2022-05-17T05:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: extract a statistic from overlapping features (points / polygons)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174446#M55212</link>
      <description>&lt;P&gt;Use the Dissolve tool.&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/dissolve.htm" target="_blank" rel="noopener"&gt;Dissolve (Data Management)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The points will need a common attribute or attributes to indicate they share the same location. You could get that using their X &amp;amp; Y values.&lt;/P&gt;&lt;P&gt;— Andy&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 05:55:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174446#M55212</guid>
      <dc:creator>AndyAnderson</dc:creator>
      <dc:date>2022-05-17T05:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: extract a statistic from overlapping features (points / polygons)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174452#M55214</link>
      <description>&lt;P&gt;Yes, thank you.&amp;nbsp; I solved it using the idential tool. This tool automatically assigns a unique ID to "all features" at the&amp;nbsp; same location. So this was easier than using x,y.&amp;nbsp; Then I dissolved on this unique ID.&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 06:35:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174452#M55214</guid>
      <dc:creator>RamB</dc:creator>
      <dc:date>2022-05-17T06:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: extract a statistic from overlapping features (points / polygons)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174741#M55235</link>
      <description>&lt;P&gt;I am accepting my own solution for following reasons:&lt;/P&gt;&lt;P&gt;1. getting an unique id via "identical tool" helped me to join it back to the original layer and also to use in the R bridge and perhaps can also be used with python scripts to summarize results based on unique ID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Comparing locations based on x,y which are essentially floating points, this can cause floating point errors if one wishes to use other scripting tools further. I do not know if "identical" tool uses dissolve based on x,y.. then essentially both soltions are the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So idential + dissolve help with further analysis in my opinion.&lt;/P&gt;&lt;P&gt;But thank you Andy.&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 18:52:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174741#M55235</guid>
      <dc:creator>RamB</dc:creator>
      <dc:date>2022-05-17T18:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: extract a statistic from overlapping features (points / polygons)</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174783#M55239</link>
      <description>&lt;P&gt;Depending on how you generated the points, you’re correct that they may not be perfectly aligned. So the Find Identical tool definitely has an advantage in that it allows you to compare the geometry within a given tolerance, either for machine error or design decision.&lt;/P&gt;&lt;P&gt;— AA&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 19:54:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-a-statistic-from-overlapping-features/m-p/1174783#M55239</guid>
      <dc:creator>AndyAnderson</dc:creator>
      <dc:date>2022-05-17T19:54:41Z</dc:date>
    </item>
  </channel>
</rss>

