[GIS] Using Fiona to Convert file geodatabase to PostgreSQL / PostGIS

file-geodatabasefionapostgispostgresql

Is there a way to use Fiona instead of OGR to convert a GDB over to postgresql / postgis within Python? If so, how or where can I look? I cannot seem to find this within the Fiona site or by simply Googling around.

Best Answer

Fiona does not currently connect to PostgreSQL/PostGIS as shown here, and sort-of documented here.

OGR is still a useful tool for PostgreSQL/PostGIS, and other spatial databases.

Related Question