Hi, I am trying to install FileGDB API to read/write file geodatabases using gdal. I have successfully installed FileGDB in Linux and am able to run the samples.
I then installed miniconda and installed gdal using
conda install -c conda-forge gdal
I am unable to find driver for "FileGDB" but other drivers like "OpenFileGDB" seem to work fine. Please suggest what I might be doing wrong.
Python code:
from osgeo import ogr
driver = ogr.GetDriverByName("FileGDB")
print(driver.GetName())