<?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: xy table to points in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667061#M51816</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this out &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001700000032000000" title="http://resources.arcgis.com/en/help/main/10.1/index.html#//001700000032000000"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Oct 2014 19:26:26 GMT</pubDate>
    <dc:creator>TimWitt2</dc:creator>
    <dc:date>2014-10-29T19:26:26Z</dc:date>
    <item>
      <title>xy table to points</title>
      <link>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667060#M51815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table that is automatically generated that has XY coordinates in it.&amp;nbsp; Is there a tool or python script&amp;nbsp; to make that into a point feature?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 19:21:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667060#M51815</guid>
      <dc:creator>StephenEldridge</dc:creator>
      <dc:date>2014-10-29T19:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: xy table to points</title>
      <link>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667061#M51816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this out &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001700000032000000" title="http://resources.arcgis.com/en/help/main/10.1/index.html#//001700000032000000"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 19:26:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667061#M51816</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2014-10-29T19:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: xy table to points</title>
      <link>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667062#M51817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out the &lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00170000006z000000"&gt;Make XY Event Layer &lt;/A&gt;in the Data Management Toolbox&amp;nbsp; &amp;gt; Layers and Table Views.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 19:27:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667062#M51817</guid>
      <dc:creator>OwenEarley</dc:creator>
      <dc:date>2014-10-29T19:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: xy table to points</title>
      <link>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667063#M51818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;OK here is how it is done.&amp;nbsp; Got clues from both replies, thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Make XY Event Layer which is only a temporary file and then used the temporary output from the XY Event Layer as the Input for Feature to Point to get my feature made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick responses and help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# ---------------------------------------------------------------------------&lt;BR /&gt;# Changes.py&lt;BR /&gt;# Created on: 2014-10-29 14:39:36.00000&lt;BR /&gt;#&amp;nbsp;&amp;nbsp; (generated by ArcGIS/ModelBuilder)&lt;BR /&gt;# Description: &lt;BR /&gt;# ---------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;# Set the necessary product code&lt;BR /&gt;# import arcinfo&lt;/P&gt;&lt;P&gt;# Import arcpy module&lt;BR /&gt;import arcpy&lt;/P&gt;&lt;P&gt;# Local variables:&lt;BR /&gt;Changes = "\\\\Path\\Name"&lt;BR /&gt;Changes_Layer = "Changes_Layer"&lt;BR /&gt;Updates = "\\\\Destination Path\\Updates"&lt;/P&gt;&lt;P&gt;# Process: Make XY Event Layer&lt;BR /&gt;arcpy.MakeXYEventLayer_management(Changes, "longitude", "latitude", Changes_Layer, "", "")&lt;/P&gt;&lt;P&gt;# Process: Feature To Point&lt;BR /&gt;arcpy.FeatureToPoint_management(Changes_Layer, Updates, "CENTROID")&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 19:44:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/xy-table-to-points/m-p/667063#M51818</guid>
      <dc:creator>StephenEldridge</dc:creator>
      <dc:date>2014-10-29T19:44:09Z</dc:date>
    </item>
  </channel>
</rss>

