<?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: Issue creating Python script to batch convert .e00 files to shapefiles (.shp) with ArcGis 10.4.1 in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413560#M13971</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you're just starting with Python, there's really no reason to use anything but the &lt;A href="https://www.python.org/dev/peps/pep-0008/#indentation"&gt;correct indentation scheme -- 4 spaces&lt;/A&gt;. Making your code legible is just as important as including the complete error messages, or adding diagnostic &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;arcpy.AddMessage()&lt;/SPAN&gt; lines just inside each for loop to trace execution flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Mar 2018 16:10:14 GMT</pubDate>
    <dc:creator>VinceAngelo</dc:creator>
    <dc:date>2018-03-08T16:10:14Z</dc:date>
    <item>
      <title>Issue creating Python script to batch convert .e00 files to shapefiles (.shp) with ArcGis 10.4.1</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413555#M13966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm&amp;nbsp;not only new to Python, but also to ArcGis and I'm quite stuck trying to create a script to batch convert .e00 files to .shp files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've started working with a script that I found in this very own site, but I'm not able to make it work properly. It seems that the first part of the code, where the conversion to coverage files is made, runs fine, but the second&amp;nbsp;part, where the conversion to .shp files should be made, doesn't work. It just does anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't get any traceback erros. Could you please give me a hint?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; os 
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteOutput &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt; 

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ws &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'C:\in'&lt;/SPAN&gt; 
out &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'C:\out'&lt;/SPAN&gt; 

&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;exists&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;out&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 
 os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;makedirs&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;out&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; cov &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFiles&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'.e00'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 
 arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ImportFromE00_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;cov&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; ws&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; cov&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;split&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'.'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 
 &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Converted %s'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;%&lt;/SPAN&gt;cov&amp;nbsp; 

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; cov &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFiles&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 
 &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'.e00'&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cov &lt;SPAN class="operator token"&gt;and&lt;/SPAN&gt; cov &lt;SPAN class="operator token"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'info'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 
&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;ws&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;cov&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 
&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; fc &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListFeatureClasses&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'*polygon'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; shp &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;out&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'%s.shp'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;%&lt;/SPAN&gt;cov&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 
&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;FeatureClassToFeatureClass_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; out&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 
&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Converted Coverage to %s'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;%&lt;/SPAN&gt;shp‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:45:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413555#M13966</guid>
      <dc:creator>PeterStevens1</dc:creator>
      <dc:date>2021-12-11T18:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Issue creating Python script to batch convert .e00 files to shapefiles (.shp) with ArcGis 10.4.1</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413556#M13967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What does the print statement on line 12 yield (how many E00 files do you have and what are their names)? Can you include the result of the print statement in this thread?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that the E00 files do not have spaces, since those are not supported in the output coverage name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps the second part does not find any results for using the ListFiles. You can use &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/listdatasets.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/listdatasets.htm"&gt;ListDatasets—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;. instead on line 16:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; cov &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListDatasets&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'*'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Coverage'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On line 17 you only search for polygon featureclasses in the coverage. Make sure that the coverage actually contains polygons. Otherwise it will not yield any result. I think after the first step you should be able to access and explore the coverages created and explore their content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a side note, E00 and coverages are a very dated data format. In many cases data providers have switched to more recent formats (like proprietary File Geodatabases). Check and see if perhaps a newer file format is available to avoid any conversions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 11:52:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413556#M13967</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2018-03-08T11:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issue creating Python script to batch convert .e00 files to shapefiles (.shp) with ArcGis 10.4.1</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413557#M13968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter, you (or a moderator of this thread) may want to covert this to a question. &amp;nbsp; Questions tend to get more views and responses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i agree with Xander that goin to a file gdb might be better in the long run than a shape, but I understand the need for them at times. &amp;nbsp;With that said, what version if the software are you using? &amp;nbsp;If only Pro, that might be some of the issue, since even the print statements &amp;nbsp;should have ( ) around the values, and since this is older code, there are better ways than using the % for formatting. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although, not come plate samples from coverage to shape files, check out the help topics ..this is for 10.6, so may need to find the correct version.&amp;nbsp;&lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/tools/conversion-toolbox/import-from-e00.htm" title="https://desktop.arcgis.com/en/arcmap/latest/tools/conversion-toolbox/import-from-e00.htm"&gt;Import from E00—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; And&amp;nbsp;&lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/tools/conversion-toolbox/feature-class-to-shapefile.htm" title="https://desktop.arcgis.com/en/arcmap/latest/tools/conversion-toolbox/feature-class-to-shapefile.htm"&gt;Feature Class To Shapefile—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shapefiles themselves have have a lot of limits since the database portion is a .dbf so if there are long field names in the coverage &amp;nbsp;the field names&amp;nbsp;&amp;nbsp;may be truncated to 10 characters and therefore you may get duplicate field names, which can toss an error. &amp;nbsp;This topic &lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/manage-data/shapefiles/geoprocessing-considerations-for-shapefile-output.htm" title="https://desktop.arcgis.com/en/arcmap/latest/manage-data/shapefiles/geoprocessing-considerations-for-shapefile-output.htm"&gt;Geoprocessing considerations for shapefile output—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;should help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not in my office so can't end my code, but have converted many coverages in the past. &amp;nbsp;I prefer to go to a gdb. From there, you can always save back to a shape if needed. &amp;nbsp;This maybe a worksaround, or at least may be an easier way to look at the data to seem if they are hitting the limitations. &amp;nbsp;If need, you can then use field appoints to get the output you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 12:41:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413557#M13968</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2018-03-08T12:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issue creating Python script to batch convert .e00 files to shapefiles (.shp) with ArcGis 10.4.1</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413558#M13969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Xander. I really appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;What does the print statement on line 12 yield (how many E00 files do you have and what are their names)? Can you include the result of the print statement in this thread?&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Make sure that the E00 files do not have spaces, since those are not supported in the output coverage name.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a bunch of&amp;nbsp; E00 files located at the workspace folder. All files are named according to the following pattern: P0XXXX.E00 (P02000.E00,&amp;nbsp;P02800.E00 and so on).&amp;nbsp; No spaces either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The print statement on line 12 yields "Converted P02800.E00", so now that you mention it I've realized that&amp;nbsp;it isn't batch converting every E00 files.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Perhaps the second part does not find any results for using the ListFiles. You can use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fdesktop.arcgis.com%2Fen%2Farcmap%2Flatest%2Fanalyze%2Farcpy-functions%2Flistdatasets.htm" rel="nofollow" style="color: #287433; background-color: #ffffff; border: 0px; text-decoration: none; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;ListDatasets—Help | ArcGIS Desktop&lt;/A&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;. instead on line 16:&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll give it a try and I'll let you know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;As a side note, E00 and coverages are a very dated data format. In many cases data providers have switched to more recent formats (like proprietary File Geodatabases). Check and see if perhaps a newer file format is available to avoid any conversions.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information. Sadly, I've been asked to work with tons of E00 files, so at least in the short term I have to deal with this data format.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 12:48:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413558#M13969</guid>
      <dc:creator>PeterStevens1</dc:creator>
      <dc:date>2018-03-08T12:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Issue creating Python script to batch convert .e00 files to shapefiles (.shp) with ArcGis 10.4.1</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413559#M13970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Rebecca.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not at the office right now, but as soon as I get there, I'll let you know what version of the software I'm exactly using.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until then, I'll dig into the documentation to learn more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 15:56:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413559#M13970</guid>
      <dc:creator>PeterStevens1</dc:creator>
      <dc:date>2018-03-08T15:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issue creating Python script to batch convert .e00 files to shapefiles (.shp) with ArcGis 10.4.1</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413560#M13971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you're just starting with Python, there's really no reason to use anything but the &lt;A href="https://www.python.org/dev/peps/pep-0008/#indentation"&gt;correct indentation scheme -- 4 spaces&lt;/A&gt;. Making your code legible is just as important as including the complete error messages, or adding diagnostic &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;arcpy.AddMessage()&lt;/SPAN&gt; lines just inside each for loop to trace execution flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2018 16:10:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413560#M13971</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2018-03-08T16:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue creating Python script to batch convert .e00 files to shapefiles (.shp) with ArcGis 10.4.1</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413561#M13972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the delay in replying to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using Python 2.7.5 with&amp;nbsp;&amp;nbsp;ArcGIS 10.4.1 for Desktop Advanced,&amp;nbsp;Product Version: 10.4.1.5686.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried to&amp;nbsp;use&amp;nbsp;ListDatasets instead of ListFiles without success. Since this is older code, I'm starting to think that&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;it might be better to restart from scratch.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Thanks again for your help, I truly appreciate it.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2018 09:15:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/issue-creating-python-script-to-batch-convert-e00/m-p/413561#M13972</guid>
      <dc:creator>PeterStevens1</dc:creator>
      <dc:date>2018-03-12T09:15:07Z</dc:date>
    </item>
  </channel>
</rss>

