<?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: Exclude points before finding mean center in Spatial Data Science Questions</title>
    <link>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505022#M1149</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The easiest solution is to get the selector tool, and draw a rectangle around the points you want to include, then run the Mean center tool.&amp;nbsp; Only selected features are used during any arctoolbox tool executation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Mar 2018 09:33:57 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2018-03-06T09:33:57Z</dc:date>
    <item>
      <title>Exclude points before finding mean center</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505021#M1148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to exclude points that follow a certain pattern before finding mean center. (i.e in the image below i want to exclude&amp;nbsp;certain wrong gps points, yellow circles, that will affect my mean center).&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/398170_mean_center.PNG" style="width: 620px; height: 321px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2018 08:06:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505021#M1148</guid>
      <dc:creator>sotokan80_</dc:creator>
      <dc:date>2018-03-06T08:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude points before finding mean center</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505022#M1149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The easiest solution is to get the selector tool, and draw a rectangle around the points you want to include, then run the Mean center tool.&amp;nbsp; Only selected features are used during any arctoolbox tool executation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2018 09:33:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505022#M1149</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-03-06T09:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude points before finding mean center</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505023#M1150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much for your reply, but i forgot to mention that this is just an example. I have to repeat the same procedure for thousands of places, so i m trying to figure out a way to exclude outliers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2018 10:03:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505023#M1150</guid>
      <dc:creator>sotokan80_</dc:creator>
      <dc:date>2018-03-06T10:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude points before finding mean center</title>
      <link>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505024#M1151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;more complicated if you don't want to provide the input.&lt;/P&gt;&lt;P&gt;What has worked in the past for me was&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;calculate the mean center for the point cluster&lt;/LI&gt;&lt;LI&gt;calculate the &lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/spatial-statistics/standard-distance.htm"&gt;&lt;STRONG&gt;standard distance&lt;/STRONG&gt;&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;remove any points beyond some threshold (perhaps 3 standard distances)&lt;/LI&gt;&lt;LI&gt;recalculate and repeat if necessary&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Alternatives&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;use&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/spatial-statistics/median-center.htm"&gt;&lt;STRONG&gt; median center !&lt;/STRONG&gt;&lt;/A&gt;&amp;nbsp; probably the better measure of centrality anyway&lt;/LI&gt;&lt;LI&gt;do a k-means clustering as the basis for your clusters&lt;/LI&gt;&lt;LI&gt;sort the data, perform a 'trim mean' by removing the top and bottom X% (ie remove points from the tails of the ordered pattern&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;There are lots of alternatives, but a better description as to why there are thousands of places and do they exhibit the same phenomenon that causes outliers in the gps data.&lt;/P&gt;&lt;P&gt;If it is the gps data collected within a particular time frame from a stationary location, then calculate the temporal difference in the time sequence and remove the points that exhibit anomalous dx, dy properties in the time sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A quick measure in the first instance.... Median center, first, then provide your rules of refinement as your 'corner-cases' arise&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2018 10:17:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-data-science-questions/exclude-points-before-finding-mean-center/m-p/505024#M1151</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-03-06T10:17:38Z</dc:date>
    </item>
  </channel>
</rss>

