I'm working on a project with GIS data from ArcGIS in a .gdb file. I wanted to use fiona/geopandas for this and use the data with some machine learning libraries. Some layers contain unsupported types, mentioned here https://github.com/Toblerity/Fiona/blob/master/fiona/_geometry.pyx.
More concrete, I got UnsupportedGeometryTypeError: 11 after opening the layer and then indexing it. Some indexes have valid types, others don't.
Example:
with fiona.open('path.gdb', layer='layername') as layer:
print(layer[4]) # works
print(layer[5]) # don't work, UnsupportedGeometryTypeError: 11
Currently, I'm working on a mac, but can switch to a Linux distro if it solves the problem. I prefer to use free libraries and to avoid arcpy, since I need a license and e.g. ArcGIS Server.
Any ideas how can I work with those formats? Maybe additional drivers or another library? Thanks.