<?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: Select points based on minimum connection lines in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62743#M2204</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works perfectly. Can we generalize it to ask and select the one with minimum connections? in this example, I just say Join_Count=2. How can&amp;nbsp;we&amp;nbsp;select in general to say:&lt;/P&gt;&lt;P&gt;Join_Count= minimum one (2 in this case)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Oct 2016 19:08:05 GMT</pubDate>
    <dc:creator>LanoYado</dc:creator>
    <dc:date>2016-10-03T19:08:05Z</dc:date>
    <item>
      <title>Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62737#M2198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using &lt;SPAN&gt;Model Builder&amp;nbsp;&lt;/SPAN&gt;and I have two layers; point and line. I want to select (and then create a point layer of them) those points that have less connections with other points.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For instant, point # 6&amp;nbsp;is connected to 5 points (# 11, 16, 20, 47, &amp;amp; 19) through 5 lines. Among these five points, # 47 is the one I want to find it since it has only 2 connections with others (# 6&amp;nbsp;&amp;amp; # 54), the rest have more lines connected to (#19 connected to&amp;nbsp;3 lines, # 11 &lt;SPAN&gt;connected to&amp;nbsp;&lt;/SPAN&gt;4 &lt;SPAN&gt;lines&lt;/SPAN&gt;, #16 &lt;SPAN&gt;connected to&amp;nbsp;&lt;/SPAN&gt;3 &lt;SPAN&gt;lines&lt;/SPAN&gt;, #20 &lt;SPAN&gt;connected to&amp;nbsp;&lt;/SPAN&gt;3 &lt;SPAN&gt;lines&lt;/SPAN&gt;).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that I already&amp;nbsp;calculated (created a field) &amp;nbsp;the number of lines connected to&amp;nbsp;each point using spatial join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any way to use in ModelBuilder?&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="238655" alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/238655_ee.png" style="width: 620px; height: 437px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:27:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62737#M2198</guid>
      <dc:creator>LanoYado</dc:creator>
      <dc:date>2016-10-03T17:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62738#M2199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add the XY coordinates to the polyline shapefile using the first and last point option&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/add-geometry-attributes.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/add-geometry-attributes.htm"&gt;Add Geometry Attributes—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you can try summarizing by one of the coordinates or a pair. &amp;nbsp;Given your current pattern where there is unlikely to be no duplicate X or Y values, unless they are the start or end, this should simplify things. &amp;nbsp;&lt;/P&gt;&lt;P&gt;One tip might be to one step further....&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Calculate the start and end X and Y values as per usual.&lt;/LI&gt;&lt;LI&gt;add two new fields and determine the minimum X and Y per line start-end. &amp;nbsp;This willl account for a point in one line being the end in another&lt;/LI&gt;&lt;LI&gt;summarize one and/or more of the fields in the usual way to get a count of the replication of the coordinates&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;There are other ways... for example, relates (using rounded truncated coordinates as text etc). &amp;nbsp;or exporting the point coordinates and doing a lexicographic sort (by x, then Y) and then do a rolling difference to count the spacing between difference indices (requires numpy)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:38:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62738#M2199</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-10-03T17:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62739#M2200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan, I will try with your first way since it looks like easier to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:51:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62739#M2200</guid>
      <dc:creator>LanoYado</dc:creator>
      <dc:date>2016-10-03T17:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62740#M2201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;(scratch this - just realized in re-reading the post that you already did this part)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 18:32:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62740#M2201</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2016-10-03T18:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62741#M2202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Chris and yes, I have calculated the lines connected to each point using spatial join but the problem is how can I select among these points the one with less connections.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 18:40:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62741#M2202</guid>
      <dc:creator>LanoYado</dc:creator>
      <dc:date>2016-10-03T18:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62742#M2203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about &lt;EM&gt;Select (Analysis)&amp;nbsp; &lt;A class="link-titled" href="http://resources.arcgis.com/en/help/main/10.2/index.html#//000800000005000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//000800000005000000"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt; .&amp;nbsp; &lt;/EM&gt;Click on the &lt;EM&gt;SQL&amp;nbsp;&lt;/EM&gt;button to the right of &lt;EM&gt;"Expression (optional)"&lt;/EM&gt; to enter your selection criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/238703_Select.jpg" style="width: 620px; height: 334px;" /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 18:53:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62742#M2203</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2016-10-03T18:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62743#M2204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works perfectly. Can we generalize it to ask and select the one with minimum connections? in this example, I just say Join_Count=2. How can&amp;nbsp;we&amp;nbsp;select in general to say:&lt;/P&gt;&lt;P&gt;Join_Count= minimum one (2 in this case)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 19:08:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62743#M2204</guid>
      <dc:creator>LanoYado</dc:creator>
      <dc:date>2016-10-03T19:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62744#M2205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created the condition using 'get value' with 'statistics summary' but the value can not be read by "select" tool.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/238728_ee.png" style="width: 620px; height: 310px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/238729_e.png" style="width: 620px; height: 321px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 20:11:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62744#M2205</guid>
      <dc:creator>LanoYado</dc:creator>
      <dc:date>2016-10-03T20:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62745#M2206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was just doing the same thing and ran into the same issue.&amp;nbsp; The Select will work with a hard-coded value (like 1), but doesn't seem to accept Value or its various permutations (like %Value%).&amp;nbsp; Odd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="/legacyfs/online/238738_Model value.jpg" style="width: 620px; height: 373px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 20:28:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62745#M2206</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2016-10-03T20:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62746#M2207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By the way, if you are familiar with &lt;EM&gt;Python&lt;/EM&gt;, you may want to consider doing the process with it instead of Modelbuilder.&amp;nbsp; I believe in &lt;EM&gt;Python&lt;/EM&gt; one has access to a &lt;EM&gt;Minimum&lt;/EM&gt; function, which would save the whole workaround one has to do in Modelbuilder to accomplish the same thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 20:40:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62746#M2207</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2016-10-03T20:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62747#M2208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;min is a built-in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; some_stuff &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;8&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;5&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; min&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;some_stuff&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;explore as Chris suggests&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; dir&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;__builtins__&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'....snip ...'&lt;/SPAN&gt;enumerate&lt;SPAN class="string token"&gt;', '&lt;/SPAN&gt;eval&lt;SPAN class="string token"&gt;', '&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;exec&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;', '&lt;/SPAN&gt;exit&lt;SPAN class="string token"&gt;', '&lt;/SPAN&gt;filter&lt;SPAN class="string token"&gt;', '&lt;/SPAN&gt;float'&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; 
&lt;SPAN class="string token"&gt;'format'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'frozenset'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'getattr'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'globals'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'hasattr'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'hash'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'help'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
 &lt;SPAN class="string token"&gt;'hex'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'id'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'input'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'int'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'isinstance'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'issubclass'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'iter'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'len'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; 
&lt;SPAN class="string token"&gt;'license'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'list'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'locals'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'map'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'max'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'memoryview'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'min'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'next'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
 &lt;SPAN class="string token"&gt;'object'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'oct'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'open'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'ord'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'pow'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'print'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'property'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'quit'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; 
&lt;SPAN class="string token"&gt;'range'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'repr'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'reversed'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'round'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'set'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'setattr'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'slice'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'sorted'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
 &lt;SPAN class="string token"&gt;'staticmethod'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'str'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'sum'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'super'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'tuple'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'type'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'vars'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'zip'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:23:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62747#M2208</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-10T22:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62748#M2209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it to work.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/238749_lowest_selected_model.jpg" style="width: 620px; height: 192px;" /&gt;&lt;IMG alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/238757_Select_expression.jpg" style="width: 620px; height: 178px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not exactly sure why it didn't work before, but after I closed ArcCatalog and reopened it, then reopened the Model and redid the expression, it now works.&amp;nbsp; I also undid the Parameters, but that seemed to have no effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 20:54:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62748#M2209</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2016-10-03T20:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62749#M2210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still not working with me. I know Python is better and faster but I can not switch to it until I can finish my current work with model builder, hopefully soon.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 21:10:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62749#M2210</guid>
      <dc:creator>LanoYado</dc:creator>
      <dc:date>2016-10-03T21:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62750#M2211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What type of data should I choose for "get value"?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/238775_ee.png" style="width: 620px; height: 425px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 21:19:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62750#M2211</guid>
      <dc:creator>LanoYado</dc:creator>
      <dc:date>2016-10-03T21:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62751#M2212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I went with the default, which is "String".&amp;nbsp;&amp;nbsp; Though the field it is checking is a &lt;EM&gt;Double precision, &lt;/EM&gt;but it still worked anyway.&amp;nbsp; (Maybe it has built in &lt;EM&gt;casting&lt;/EM&gt;?&amp;nbsp; Not sure)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd check the properties of the field you are running the &lt;EM&gt;Get Field Value&lt;/EM&gt; against and match its properties, if possible.&amp;nbsp; There seems to be &lt;EM&gt;String&lt;/EM&gt; and &lt;EM&gt;Long&lt;/EM&gt; available as choices, but not the others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris Donohue, GISP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 21:30:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62751#M2212</guid>
      <dc:creator>ChrisDonohue__GISP</dc:creator>
      <dc:date>2016-10-03T21:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62752#M2213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be cool to throw some python code at it (I would never consider ModelBuilder for something like this). Just a small questions. What to do in the case of point 20? It has two connected points that only have connections to one other point (30 and 37). Which one should be taken?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2016 12:33:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62752#M2213</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-10-04T12:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62753#M2214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is a good question Xander, in that case and for my work, it takes one of them randomly since they have the same weight of connection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2016 13:46:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62753#M2214</guid>
      <dc:creator>LanoYado</dc:creator>
      <dc:date>2016-10-04T13:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Select points based on minimum connection lines</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62754#M2215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Genius,Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2016 02:39:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/select-points-based-on-minimum-connection-lines/m-p/62754#M2215</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-10-05T02:39:34Z</dc:date>
    </item>
  </channel>
</rss>

