<?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: 'Detecting' vertice/point connections with python in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505371#M39736</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Each arc has a "first point" and "lastpoint" (aka FromNode and ToNode), which are properties easily retrievable by a search cursor or field calculator. Then the derived x,y coordinate pairs of the first and last points can then be used as unique identifiers to model flow/connectivity. Of course the StreamToFeature tool automatically populates topologically correct TO_NODE and FROM_NODE field values, so that's even more convenient.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jun 2014 18:30:40 GMT</pubDate>
    <dc:creator>ChrisSnyder</dc:creator>
    <dc:date>2014-06-30T18:30:40Z</dc:date>
    <item>
      <title>'Detecting' vertice/point connections with python</title>
      <link>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505369#M39734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone know how to programmatically detect what features a vertice/point is connected to in ArcGIS? My reason for asking this is I am developing a watercourse network and would like to identify node inputs/outputs. I am aware that a spatial join can acheive this somewhat, but would prefer to use something a little less involved if thats possible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Chris&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2014 08:36:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505369#M39734</guid>
      <dc:creator>ChristopherEarley</dc:creator>
      <dc:date>2014-06-30T08:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: 'Detecting' vertice/point connections with python</title>
      <link>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505370#M39735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;one word: topology&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2014 10:52:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505370#M39735</guid>
      <dc:creator>markdenil</dc:creator>
      <dc:date>2014-06-30T10:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: 'Detecting' vertice/point connections with python</title>
      <link>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505371#M39736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Each arc has a "first point" and "lastpoint" (aka FromNode and ToNode), which are properties easily retrievable by a search cursor or field calculator. Then the derived x,y coordinate pairs of the first and last points can then be used as unique identifiers to model flow/connectivity. Of course the StreamToFeature tool automatically populates topologically correct TO_NODE and FROM_NODE field values, so that's even more convenient.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2014 18:30:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505371#M39736</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2014-06-30T18:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: 'Detecting' vertice/point connections with python</title>
      <link>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505372#M39737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your advice Mark/Chris,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Apart from the Resource Centre literature on topology, do you know of any other online/offline literature relating to the manipulation of the first/last point? Particularly something that utilizes python?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Chris&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 07:50:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505372#M39737</guid>
      <dc:creator>ChristopherEarley</dc:creator>
      <dc:date>2014-07-01T07:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: 'Detecting' vertice/point connections with python</title>
      <link>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505373#M39738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't know of any literature. My approach has been to load the node data into Python dictionaries and then write code that traverse those dictionaries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Basically one dictionary is keyed by toNode values (either the TO_NODE value from the attribute table or end point x,y coordinate pairs)and each key then stores the OID(s) and fromNode(s). The other is keyed by fromNode and each key then stores the OID(s) and toNode(s). The technique then is to alternate through the keys in the dictionaries, getting a node, and then looking up the node that are attached (keeping track of the OIDs along the way), rinse and repeat.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 17:39:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/detecting-vertice-point-connections-with-python/m-p/505373#M39738</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2014-07-01T17:39:48Z</dc:date>
    </item>
  </channel>
</rss>

