<?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: StreetName from FNode/TNode coverage in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445049#M25420</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will you please explain in more detail as i am trying to achieve the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Feb 2015 20:11:41 GMT</pubDate>
    <dc:creator>Deanvan_den_Heever2</dc:creator>
    <dc:date>2015-02-16T20:11:41Z</dc:date>
    <item>
      <title>StreetName from FNode/TNode coverage</title>
      <link>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445047#M25418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to build a table that simply has Fnode, Tnode and StreetName but cannot get accurate data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With a StreetCenterline featureclass, I used Feature Vertices to Points - BOTH_ENDS to create a Nodes featureclass. Then I used both the Centerlines and the Nodes to create a coverage. The problem is that the Node table picks a Centerline# that may or may not be accurate (since multiple centerlines can come into a node). The Centerline table of the coverage only has FNode and TNode with a FID that may or may not be in the Node table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for a more accurate way of doing this. I do not need to build a Network Dataset or a Geometric Network, I just need to know the right StreetName between each FNode and Tnode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2015 18:08:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445047#M25418</guid>
      <dc:creator>SteveClark</dc:creator>
      <dc:date>2015-02-11T18:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: StreetName from FNode/TNode coverage</title>
      <link>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445048#M25419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The solution was to add an extra step after running Feature Vertices to Points and Feature Class to Coverage = running a Spatial Join with ARE_IDENTICAL_TO option. This conflated the attributes (including streetname) from the original Centerlines featureclass onto the arc coverage that has the FNode/TNode. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 17:59:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445048#M25419</guid>
      <dc:creator>SteveClark</dc:creator>
      <dc:date>2015-02-12T17:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: StreetName from FNode/TNode coverage</title>
      <link>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445049#M25420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will you please explain in more detail as i am trying to achieve the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 20:11:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445049#M25420</guid>
      <dc:creator>Deanvan_den_Heever2</dc:creator>
      <dc:date>2015-02-16T20:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: StreetName from FNode/TNode coverage</title>
      <link>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445050#M25421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dean, the best way I can explain the steps is to show it to you in python:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This assumes you have a FileGDB with a streetcenterlines featureclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Create a pointFeatureClass from the beginning and end point of each centerline segment&lt;/P&gt;&lt;P&gt;arcpy.FeatureVerticesToPoints_management(streetCenterline, pointFeatureClass, "BOTH_ENDS")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Create a Coverage from both the streetCenterline and pointFeatureClass&lt;/P&gt;&lt;P&gt;inFeatures = [[streetCenterline, "ROUTE"],[pointFeatureClass, "POINT"]]&lt;/P&gt;&lt;P&gt;arcpy.FeatureclassToCoverage_conversion(inFeatures, outCoverage, "", "DOUBLE") &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Overlay (using SpatialJoin) the street centerline featureclass onto the arcs of the coverage&lt;/P&gt;&lt;P&gt;arcpy.SpatialJoin_analysis(arcFromOutCoverage, streetCenterline, outFeatureClass, "JOIN_ONE_TO_ONE", "", "", "ARE_IDENTICAL_TO")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the streetcenterlines featureclass has the streetname for each line segment, all this does is to overlay the streetcenterlines onto to arcs built for the coverage (which has the FNode and TNode). The result adds the streetname attribute (among others) to the line coverage and creates a featureclass with the results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only problem I've run into is that this cannot be run in standalone - the FeatureclassToCoverage will crash every time. Running this manually in toolbox or in python window will work fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 16:14:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445050#M25421</guid>
      <dc:creator>SteveClark</dc:creator>
      <dc:date>2015-02-17T16:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: StreetName from FNode/TNode coverage</title>
      <link>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445051#M25422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. This was great. Do you by any chance have a answer for the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 1em; color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(248, 248, 248, 0.6);"&gt;I need to create a shapefile of Road segments with a "To_Road/s" and "From_Road/s" as tables in the attributes with the streetnames as fields.&lt;/P&gt;&lt;P style="margin-bottom: 1em; color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(248, 248, 248, 0.6);"&gt;I used the Planarize tool to seperate the roads into segments. I know it has something to do with spatial join and the FID but I can not figure this one out.&lt;/P&gt;&lt;P style="margin-bottom: 1em; color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgba(248, 248, 248, 0.6);"&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 20:55:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/streetname-from-fnode-tnode-coverage/m-p/445051#M25422</guid>
      <dc:creator>Deanvan_den_Heever2</dc:creator>
      <dc:date>2015-02-17T20:55:27Z</dc:date>
    </item>
  </channel>
</rss>

