Opening E00 Files
Programs that use GDAL as a back-end should be able to natively open .e00 files β for example QGIS, GRASS, SAGA, ogr2ogr, Pythonβs GeoPandas or R Statistical Programmingβs sf package. This is a default built-in driver in GDAL.
If you have GDAL installed (which you may already have if you have any open source GIS software installed), you can also use ogr2ogr to do the conversion. Due to the limitations of Shapefiles, you it is better to convert to GeoPackage, as Arc/Info E00 files can have field names longer than 10-character long Shapefiles.
ogr2ogr output.shp input.e00 # note output comes before input
In the past, gdal didnβt have native E00 support but all recent versions do.
About the AVCE00 driver: https://gdal.org/drivers/
Programs that use GDAL as a backend: https://gdal.org/software_
ogr2ogr man page: https://gdal.org/programs/
Take a look at Spatial Reserves blog for some other options using an online converter if you don’t have the open-source stack installed your computer.