<?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: Faster Way to build FC from Table in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478762#M37473</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Military Analyst is free&lt;BR /&gt;&lt;A href="http://www.esri.com/software/arcgis/defense-solutions/download"&gt;http://www.esri.com/software/arcgis/defense-solutions/download&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;A free extension?! I never even thought such a thing might exist! Thanks for that information!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Sep 2012 13:48:27 GMT</pubDate>
    <dc:creator>ChristopherThompson</dc:creator>
    <dc:date>2012-09-14T13:48:27Z</dc:date>
    <item>
      <title>Faster Way to build FC from Table</title>
      <link>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478758#M37469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm looking for a faster way to build a Feature Class from a table in a python script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
arcpy.MakeXYEventLayer_management(NonExceed, "Easting", "Northing", NonExceed_Layer, spRef, "")
arcpy.CopyFeatures_management(NonExceed_Layer, NonExceed_New, "", "0", "0", "0")
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Works... just goes painfully slow. It's much quicker to "Make feature class from XY table" in Catalogue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Suggestions?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 17:22:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478758#M37469</guid>
      <dc:creator>CameronWallace</dc:creator>
      <dc:date>2012-09-13T17:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: Faster Way to build FC from Table</title>
      <link>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478759#M37470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In the 'Military Analyst' toolbox, 'Geometry' toolset, there are tools for Table to Point, Table to Polyline, and Table to Polygon.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 20:03:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478759#M37470</guid>
      <dc:creator>GeorgeNewbury</dc:creator>
      <dc:date>2012-09-13T20:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Faster Way to build FC from Table</title>
      <link>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478760#M37471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;In the 'Military Analyst' toolbox, 'Geometry' toolset, there are tools for Table to Point, Table to Polyline, and Table to Polygon.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Those tools do you exactly zero good if you don't have that extension, and in fact there probably isn't a Military Analyst toolbox without the extension.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suppose you could use a search cursor on a table of XY data, create a point from reading the XY coordinates (arcpy.Point) and then an insert cursor to put that point into a new feature class.&amp;nbsp; This topic may lead you down the right path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//002z0000001v000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//002z0000001v000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would be interesting to know if this is faster. Also if you have 3DAnalyst, you could use the &lt;/SPAN&gt;&lt;STRONG&gt;ASCII 3D to Feature Class tool&lt;/STRONG&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Ascii3DToFeatureClass_3d(args)&lt;/SPAN&gt;&lt;SPAN&gt; for scripting purposes)- your data would have to be in a specific format for this to work so you would want to read up on that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 13:02:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478760#M37471</guid>
      <dc:creator>ChristopherThompson</dc:creator>
      <dc:date>2012-09-14T13:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Faster Way to build FC from Table</title>
      <link>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478761#M37472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Military Analyst is free&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://www.esri.com/software/arcgis/defense-solutions/download"&gt;http://www.esri.com/software/arcgis/defense-solutions/download&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 13:10:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478761#M37472</guid>
      <dc:creator>michaelcollins1</dc:creator>
      <dc:date>2012-09-14T13:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Faster Way to build FC from Table</title>
      <link>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478762#M37473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Military Analyst is free&lt;BR /&gt;&lt;A href="http://www.esri.com/software/arcgis/defense-solutions/download"&gt;http://www.esri.com/software/arcgis/defense-solutions/download&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;A free extension?! I never even thought such a thing might exist! Thanks for that information!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2012 13:48:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/faster-way-to-build-fc-from-table/m-p/478762#M37473</guid>
      <dc:creator>ChristopherThompson</dc:creator>
      <dc:date>2012-09-14T13:48:27Z</dc:date>
    </item>
  </channel>
</rss>

