<?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: How to convert e00 to shp by command? in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650920#M21766</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Why not creating a batch conversion tools? Especially for directory to directory conversion.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Sep 2010 23:41:06 GMT</pubDate>
    <dc:creator>bangqianchen</dc:creator>
    <dc:date>2010-09-06T23:41:06Z</dc:date>
    <item>
      <title>How to convert e00 to shp by command?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650916#M21762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I want to convert many e00 files to shapfiles by commends, can you give me an example of "import_arc" or "QuickImport" command? both of them were failed on my PC. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also posted a thread in the sub-forum of ArcGIS Desktop - General,&amp;nbsp; however, nobody replied! Here is the adress. &lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/9067-Why-the-convertion-failed-%28-E00-gt-shp-%29"&gt;http://forums.arcgis.com/threads/9067-Why-the-convertion-failed-%28-E00-gt-shp-%29&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 07:11:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650916#M21762</guid>
      <dc:creator>bangqianchen</dc:creator>
      <dc:date>2010-08-12T07:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert e00 to shp by command?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650917#M21763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Do you have ArcInfo Workstation installed as well as ArcGIS? If so you have another toolbox at your disposal called "Coverage Tools", typically found in this directory: C:\arcgis\arcexe9x\Toolboxes. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There's a tool called "Conversion-&amp;gt;To Coverage-&amp;gt;Import From Interchange File" that will do what you want. Its help file has the following Python example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcgisscripting
gp = arcgisscripting.create()

gp.workspace = "c:/workspace"
gp.toolbox = "arc"
gp.import("auto", "tracts.e00", "tracts")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:36:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650917#M21763</guid>
      <dc:creator>BradPosthumus</dc:creator>
      <dc:date>2021-12-12T03:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert e00 to shp by command?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650918#M21764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I haven't tried the QuickImport command before but it seems to work as well, but you need to have access to the Data Interoperability extension. The code below converts all E00 files in a directory to shapefiles.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcgisscripting, os

gp = arcgisscripting.create()
gp.CheckOutExtension("DataInteroperability")

# Directory containing E00 files
strE00Directory = "C:/temp"
# Temporary Geodatabase required for QuickImport
strTempGdb = strE00Directory + "/tempOutput.gdb"

# loop through list of files in the E00 directory
for strFile in os.listdir(strE00Directory):
&amp;nbsp;&amp;nbsp;&amp;nbsp; if strFile.endswith(".e00"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Extracting " + strFile + "..."
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # convert E00 to file geodatabase feature class
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.QuickImport(strFile, strTempGdb)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Set the workspace to the gdb, loop through all of the extracted feature classes
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp;&amp;nbsp; and create a shapefile from each.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.workspace = strTempGdb
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objDatasets = gp.listfeatureclasses()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objDataset = objDatasets.next()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while objDataset:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strOutputFile = strE00Directory + "/" + objDataset + ".shp"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Creating " + strOutputFile + "..."
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.copyfeatures_management(objDataset, strOutputFile)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objDataset = objDatasets.next()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # delete the temp gdb since QuickImport requires a new gdb each time its run
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.delete_management(strTempGdb)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:36:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650918#M21764</guid>
      <dc:creator>BradPosthumus</dc:creator>
      <dc:date>2021-12-12T03:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert e00 to shp by command?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650919#M21765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I want to convert many e00 files to shapfiles by commends, can you give me an example of "import_arc" or "QuickImport" command? both of them were failed on my PC. &lt;BR /&gt;&lt;BR /&gt;I also posted a thread in the sub-forum of ArcGIS Desktop - General,&amp;nbsp; however, nobody replied! Here is the adress. &lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/9067-Why-the-convertion-failed-%28-E00-gt-shp-%29"&gt;http://forums.arcgis.com/threads/9067-Why-the-convertion-failed-%28-E00-gt-shp-%29&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Try downloading and using this tool: &lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/geoprocessing/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16535"&gt;http://resources.esri.com/geoprocessing/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16535&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Dave&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 22:25:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650919#M21765</guid>
      <dc:creator>DavidWynne</dc:creator>
      <dc:date>2010-08-20T22:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert e00 to shp by command?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650920#M21766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Why not creating a batch conversion tools? Especially for directory to directory conversion.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 23:41:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-to-convert-e00-to-shp-by-command/m-p/650920#M21766</guid>
      <dc:creator>bangqianchen</dc:creator>
      <dc:date>2010-09-06T23:41:06Z</dc:date>
    </item>
  </channel>
</rss>

