<?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: Importing e00 files in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568526#M44541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh my gosh Kim. It worked!! Thank you so much.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I went to Geoprocessing -&amp;gt; Toolbox -&amp;gt; To Coverage -&amp;gt; Import from E00&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You are amazing!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Feb 2014 22:41:01 GMT</pubDate>
    <dc:creator>UrennaOnyewuchi</dc:creator>
    <dc:date>2014-02-10T22:41:01Z</dc:date>
    <item>
      <title>Importing e00 files</title>
      <link>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568520#M44535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi. I am new to ArcGIS. I opened up ArcMap for visualization and to run analysis on a database. One of the contents of my database folder is an .e00 file. That is, an ArcInfo Workstation export interchange file. I'd like to import this file into ArcMap. So, I opened up a Python window and typed in the following commands. It is an example from ArcGIS 10.2.1 Help. I changed my environment settings to the location of the e00 file and used the same location for my output data. When I ran "arcpy.Import_arc(...)", I got the following error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="font-style:italic;"&gt;AttributeError: Object: Tool or environment &amp;lt;Import_arc&amp;gt; not found&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you please tell me how to fix this? I opened up arc.py and the file has Import_arc. So, I'm not sure why I am getting the error. Thank you!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Name: Import_Example.py&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# Description: Imports from E00 format to a coverage&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# Requirements: ArcInfo Workstation&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Import system modules&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from arcpy import env&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Set environment settings&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;env.workspace = "C:/data"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Set local variables&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;featureType = "COVER"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;interchangeFile = "citylim.e00"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outDataset = "C:/output/citylimit"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Execute Import&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.Import_arc(featureType, interchangeFile, outDataset)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Feb 2014 21:04:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568520#M44535</guid>
      <dc:creator>UrennaOnyewuchi</dc:creator>
      <dc:date>2014-02-08T21:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Importing e00 files</title>
      <link>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568521#M44536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The name of the tool seems to have changed to&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.ImportFromE00_conversion()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy

arcpy.env.workspace = "C:/data"
arcpy.ImportFromE00_conversion("citylim.e00", "C:/output", "citylim")
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:29:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568521#M44536</guid>
      <dc:creator>KimOllivier</dc:creator>
      <dc:date>2021-12-12T00:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Importing e00 files</title>
      <link>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568522#M44537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks a lot Kim. I tried the new command. Now I have this error to deal with. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Runtime error&amp;nbsp; Traceback (most recent call last):&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;&amp;nbsp;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\conversion.py", line 1605, in ImportFromE00&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e ExecuteError: Failed to execute. Parameters are not valid. ERROR 000814: Invalid file type Failed to execute (ImportFromE00). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure why it says invalid file type when it is an e00 file.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Feb 2014 00:50:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568522#M44537</guid>
      <dc:creator>UrennaOnyewuchi</dc:creator>
      <dc:date>2014-02-09T00:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Importing e00 files</title>
      <link>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568523#M44538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you run the tool from the toolbox a dialog will allow you to fill in the parameters and validate them before you can press OK.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;An invalid parameter suggests you are missing a quote or something in the command.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If it runs successfully, you can copy the command from the results as a Python snippet to be pasted into a script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You should be able to read the E00 file in a text editor. It will look strange, but is a text file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The format allowed for splitting the file so you could have E00, E01, E02.... files. (one on each 1.44MB floppy disk)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you sure you have all the files? It should have and EOF at the end.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;E00 files have been obsolete since 1999, so it could be a third party product creating an invalid file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If it is small you could attach it for me to look at.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The name has changed because ARC/INFO is no longer installed with ArcGIS at version 10 for the original tool to use.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Feb 2014 05:30:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568523#M44538</guid>
      <dc:creator>KimOllivier</dc:creator>
      <dc:date>2014-02-09T05:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Importing e00 files</title>
      <link>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568524#M44539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sure Kim.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again!! I tried uploading the file but got an error. Here is the file link location. Looking forward to hearing from you!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.ce.utexas.edu/prof/maidment/giswr98/riskmap/riskmap.zip"&gt;http://www.ce.utexas.edu/prof/maidment/giswr98/riskmap/riskmap.zip&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Feb 2014 20:00:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568524#M44539</guid>
      <dc:creator>UrennaOnyewuchi</dc:creator>
      <dc:date>2014-02-09T20:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Importing e00 files</title>
      <link>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568525#M44540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Your data is fine. It all opens for me with ArcGIS 10.2 without conversion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have found to my surprise that ArcMap can now read E00 files natively without translation. The 'coverages' are represented as a dataset containing simple point lines and polygons. Just use the AddData button. Similarly the tables in the Access database will load as tables but without any geometry.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not all the geometry layers have a projection defined but they all overlay anyway because they are in the same coordinate system, including the TIF image. You could export the layers to a current format eg shape file or featureclass in a new geodatabase and define the projection.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To make the SOURCEAREA fill you need to run FeatureToPolygon Tool to rebuild polygons from the arc layer. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The WELLS point layer has a key LOC_ID which can be used to join the access tables for labelling, symbolising and analysis.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 19:51:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568525#M44540</guid>
      <dc:creator>KimOllivier</dc:creator>
      <dc:date>2014-02-10T19:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Importing e00 files</title>
      <link>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568526#M44541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh my gosh Kim. It worked!! Thank you so much.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I went to Geoprocessing -&amp;gt; Toolbox -&amp;gt; To Coverage -&amp;gt; Import from E00&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You are amazing!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 22:41:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/importing-e00-files/m-p/568526#M44541</guid>
      <dc:creator>UrennaOnyewuchi</dc:creator>
      <dc:date>2014-02-10T22:41:01Z</dc:date>
    </item>
  </channel>
</rss>

