Closed micahcochran closed 8 years ago
Definitely a bug, @micahcochran. I failed to add multi-layer support to fio-load. Sorry! Fix coming soon.
It looks like there is no multi-layer support for fio info either?
@smnorris Yep - lets track that in https://github.com/Toblerity/Fiona/issues/316
I'm trying to use
fio
to convert a shapefile into a FileGDB. FileGDB is a multilayer format. These examples are really only treatingthe format as a single layer format. That is so that I can try to figure out what is going wrong.This example seems to work
GDAL/OGR does it this way:
Slap
-nln layername
on the end to rename the layer to 'layername'.So I tried this:
That crashes python on windows. :-(
My first guess was this. I looked in the source, but I didn't find a "layer" option.
This doesn't cause a crash, but I'm guessing this never gets to GDAL/OGR due to the bad command line argument.
This was the other way I thought this could work. (ArcGIS Desktop treats it GeoDatabases like directories in ArcCatalog.)
Yet again, it crashes python on windows. :-( The same thing happens if I omit the
.gdb
extension.My problem is I can't get
fio
to write to FileGDB format. Is it just me? Is it my installation? Is this something needing to be patched?