<?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: Speed up conversion from table to shp in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457754#M15400</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hmm... Not sure what the heck is wrong. copy features is the correct tool, but not sure why it is taking so long. I have heard about this sort of thing on the old forums (Copy Features was taking forever).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Some things to try:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Once you make the XYEventLayer, try making a new feature layer from GWLayer using the gp.MakeFeatureLayer tool, then use the feature layer as input into the CopyFeatures tool.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Make a TableView out of your .mdb table (using MakeTableView tool), then run the XYEventLayer tool using the table view as input.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jul 2010 19:45:32 GMT</pubDate>
    <dc:creator>ChrisSnyder</dc:creator>
    <dc:date>2010-07-28T19:45:32Z</dc:date>
    <item>
      <title>Speed up conversion from table to shp</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457749#M15395</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;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been working on a Python script to convert a table (from MS Access .mdb) to a shapefile. The code below works well for my smaller tables (about 2,000 records with 50 fields; runs in 51 seconds), but takes far too long for larger ones (about 75,000 records with 50 fields; still running after 1 hour 45 minutes...).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;The idea is to programmatically replicate the ArcMap actions of "Add XY Data" and "Export Data to Shapefile",&lt;/STRONG&gt;&lt;SPAN&gt; so I'm using gp.MakeXYEventLayer_management and gp.CopyFeatures_management.&lt;/SPAN&gt;&lt;STRONG&gt; It takes much more time via Python&lt;/STRONG&gt;&lt;SPAN&gt; than the actions would take in ArcMap, which leads me to wonder if I'm missing something.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any suggestions on how to make this work faster?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Import system modules
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Importing system modules..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; import sys, string, os, arcgisscripting
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Create the Geoprocessor object
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp = arcgisscripting.create()
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Load required toolboxes...
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Loading toolboxes..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddToolbox("C:/ArcGIS/ArcToolbox/Toolboxes/Data Management Tools.tbx")
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Setting OverWriteOutput to True allows geoprocessing tools to overwrite
&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp;&amp;nbsp;&amp;nbsp; the output if it already exists.
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.OverWriteOutput = 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; XY_Table = ""
&amp;nbsp;&amp;nbsp;&amp;nbsp; #-------------Groundwater Part ----------------------
&amp;nbsp;&amp;nbsp;&amp;nbsp; GWLayer = "'Groundwater$'_Layer3"
&amp;nbsp;&amp;nbsp;&amp;nbsp; v_Groundwater = \\\\Computer\\AutoSitesShp\\sitefile_01.mdb\\GW 
&amp;nbsp;&amp;nbsp;&amp;nbsp; GW = "\\\\Computer\\AutoSitesShp\\AutoGW"
&amp;nbsp;&amp;nbsp; # Process: Make XY Event Layer (GW)...
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Making XY Event Layer (GW)..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.MakeXYEventLayer_management(v_Groundwater, "dec_long_va", "dec_lat_va", GWLayer, "GEOGCS['GCS_North_American_1983',DATUM['D_North_American_1983',SPHEROID['GRS_1980',6378137.0,298.257222101]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];IsHighPrecision")
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Process: Copy Features...
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Copying features (GW)..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.CopyFeatures_management(GWLayer, GW, "", "0", "0", "0")
&amp;nbsp;&amp;nbsp;&amp;nbsp; GWLayer =0
&amp;nbsp;&amp;nbsp;&amp;nbsp; v_Groundwater = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; GW = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Clear local variables
&amp;nbsp;&amp;nbsp;&amp;nbsp; v_Surface_Water___Layer = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; SW = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; XY_Table = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; v_Surface_Water__ = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Set OverWriteOutput back to false
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.OverWriteOutput = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Done."
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jul 2010 19:41:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457749#M15395</guid>
      <dc:creator>__</dc:creator>
      <dc:date>2010-07-23T19:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Speed up conversion from table to shp</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457750#M15396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Maybe a cursor would be faster - that is cursor through the .mdb file and build a shapefile that way? Seems like your .mdb file is on a network... Could it be that the network is slow? I would try to 1st copy the .mdb file locally, and then make the XYEventLayer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jul 2010 23:06:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457750#M15396</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2010-07-23T23:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Speed up conversion from table to shp</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457751#M15397</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;first thing: strong support for Chris - get the mdb from the network! ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and then read in the mdb sequentially and write it via a cursor into the target FC ... you can use the code on &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Writing_geometries/002z0000001v000000/"&gt;this&lt;/A&gt;&lt;SPAN&gt; page as stub code for the geometry handling&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Jul 2010 15:17:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457751#M15397</guid>
      <dc:creator>GünterDörffel</dc:creator>
      <dc:date>2010-07-24T15:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: Speed up conversion from table to shp</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457752#M15398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the replies. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;About the network:&lt;/STRONG&gt;&lt;SPAN&gt; Yes, the files are being processed over a network. Yes, this probably adds some time. However, &lt;/SPAN&gt;&lt;STRONG&gt;I don't think this is my main issue&lt;/STRONG&gt;&lt;SPAN&gt;; I can perform the same task that takes 2+ hours via Python in a few minutes through ArcMap (with the same network setup). It's the gp.CopyFeatures_management line that takes most of the time; the rest runs in less than 1 minute.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;About cursors:&lt;/STRONG&gt;&lt;SPAN&gt; This sounds promising, but it's completely new to me, I'm a programming rookie, and &lt;/SPAN&gt;&lt;STRONG&gt;I couldn't really see how to apply the example scripts to my files.&lt;/STRONG&gt;&lt;SPAN&gt; I'm trying to create a shapefile of points from an Access table that contains site information. The sites have about 50 fields describing various parameters, all of which need to be accessable upon "Identify" in ArcMap. Each site has its own unique name and lat/long coordinate. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Could someone please provide me with more specific examples? Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jul 2010 14:02:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457752#M15398</guid>
      <dc:creator>__</dc:creator>
      <dc:date>2010-07-26T14:02:47Z</dc:date>
    </item>
    <item>
      <title>10 minutes in ModelBuilder and 2 hours in Script?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457753#M15399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This just doesn't make any sense: using zero scripting in ArcMap (just clicking Add XY Data, then right clicking events layer and exporting the data) this process takes about 2 minutes. I can accomplish the same thing in ModelBuilder in about 10 minutes using "Make XY event layer" and "Copy features (management)". My Python script (which uses the same to geoprocessing commands as ModelBuilder) takes 2 hours. All of this with the same data and same save locations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For both the ModelBuilder and Python scripts, the step that takes the longest is Copy features. (Add XY Data takes less than 30 seconds.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What's the discrepancy here?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(I'm still open to alternatives to the Copy features method also; I haven't been able to make sense of cursors yet.)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jul 2010 19:07:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457753#M15399</guid>
      <dc:creator>__</dc:creator>
      <dc:date>2010-07-28T19:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Speed up conversion from table to shp</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457754#M15400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hmm... Not sure what the heck is wrong. copy features is the correct tool, but not sure why it is taking so long. I have heard about this sort of thing on the old forums (Copy Features was taking forever).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Some things to try:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Once you make the XYEventLayer, try making a new feature layer from GWLayer using the gp.MakeFeatureLayer tool, then use the feature layer as input into the CopyFeatures tool.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Make a TableView out of your .mdb table (using MakeTableView tool), then run the XYEventLayer tool using the table view as input.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jul 2010 19:45:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457754#M15400</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2010-07-28T19:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Speed up conversion from table to shp</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457755#M15401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Not sure if this helps, but it might be worth a try. I ran into a similar speed issue when exporting our Parcel feature class to shapefile and found the &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Quick Export &lt;/SPAN&gt;&lt;SPAN&gt;(Data Interoperability Tools) to be much more efficient!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Model Using &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Copy Features&lt;/SPAN&gt;&lt;SPAN&gt; or &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Feature Class to Shapefile &lt;/SPAN&gt;&lt;SPAN&gt;or &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Feature Class to Feature Class&lt;/SPAN&gt;&lt;SPAN&gt; : 20+ mins&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Model Using &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Quick Export &lt;/SPAN&gt;&lt;SPAN&gt; : 2mins&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck and hope this helps!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Aug 2010 18:53:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457755#M15401</guid>
      <dc:creator>ShaunConway</dc:creator>
      <dc:date>2010-08-06T18:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Speed up conversion from table to shp</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457756#M15402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. I think this will work. First trial did in 5 minutes what my old code did in 2 hours.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Aug 2010 20:52:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457756#M15402</guid>
      <dc:creator>__</dc:creator>
      <dc:date>2010-08-06T20:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Speed up conversion from table to shp</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457757#M15403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just worked out the final kinks (hopefully). It's a little odd that the Quick Export tool requires a separate overwrite setting.This drove me nuts at first becuase it was appending my database each time even though I had the geoprocessor object set to overwrite.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In case anyone else wants to do something similar, &lt;/SPAN&gt;&lt;STRONG&gt;this code takes my XY data from a table and creates/overwrites a table within a personal geodatabase. &lt;/STRONG&gt;&lt;SPAN&gt;It would have to be modified considerably for anyone else who wants to use it, but at least this is a starting point. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Import system modules
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Importing system modules..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; import sys, string, os, arcgisscripting
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Create the Geoprocessor object
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp = arcgisscripting.create()
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Load required toolboxes...
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Loading toolboxes..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddToolbox("C:/ArcGIS/ArcToolbox/Toolboxes/Data Management Tools.tbx")
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Setting OverWriteOutput to True allows geoprocessing tools to overwrite
&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp;&amp;nbsp;&amp;nbsp; the output if it already exists.
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.OverWriteOutput = 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; XY_Table = ""
&amp;nbsp;&amp;nbsp;&amp;nbsp; outputDB = '"\\\\ComputerB\\AutoSitesShp\\SitesShp.mdb"'
&amp;nbsp;&amp;nbsp;&amp;nbsp; outputLayer = "SurfaceWater"
&amp;nbsp;&amp;nbsp;&amp;nbsp; inputTable = "\\\\ComputerB\\AutoSitesShp\\sitefile_01.mdb\\SW"
 
&amp;nbsp;&amp;nbsp; # Process: Make XY Event Layer (SW) ...
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Making XY Event Layer (SW) ..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.MakeXYEventLayer_management(inputTable, "dec_long_va", "dec_lat_va", outputLayer, "GEOGCS['GCS_North_American_1983',DATUM['D_North_American_1983',SPHEROID['GRS_1980',6378137.0,298.257222101]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];IsHighPrecision")
 
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Process: Quick Export (SW)...
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Processing Quick Export (SW) ..."
&amp;nbsp;&amp;nbsp;&amp;nbsp; Output_Dataset = "GEODATABASE_MDB," + outputDB + ",\"RUNTIME_MACROS,\"\"OVERWRITE_GEODB,yes,TRANSACTION_TYPE,TRANSACTIONS,SIMPLIFY_GEOM,no,X_ORIGIN,0,Y_ORIGIN,0,XY_SCALE,0,HAS_Z_VALUES,auto_detect,Z_ORIGIN,0,Z_SCALE,0,GRID_1,0\"\",META_MACROS,\"\"DestOVERWRITE_GEODB,yes,DestTRANSACTION_TYPE,TRANSACTIONS,DestSIMPLIFY_GEOM,no,DestX_ORIGIN,0,DestY_ORIGIN,0,DestXY_SCALE,0,DestHAS_Z_VALUES,auto_detect,DestZ_ORIGIN,0,DestZ_SCALE,0,DestGRID_1,0\"\",METAFILE,GEODATABASE_MDB,COORDSYS,,__FME_DATASET_IS_SOURCE__,false\""
&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.QuickExport_interop(outputLayer, Output_Dataset)
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again to everyone who posted suggestions!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:22:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/speed-up-conversion-from-table-to-shp/m-p/457757#M15403</guid>
      <dc:creator>__</dc:creator>
      <dc:date>2021-12-11T20:22:19Z</dc:date>
    </item>
  </channel>
</rss>

