ESRI File Geodatabase vector (OpenFileGDB)
Driver short name
OpenFileGDB
Driver built-in by default
This driver is built-in by default
The OpenFileGDB driver provides read, write and update access to vector layers of File Geodatabases (.gdb directories) created by ArcGIS 10 and above (it has also read-only support for ArcGIS 9.x geodatabases). The dataset name must be the directory/folder name, and it must end with the .gdb extension.
It can also read directly zipped .gdb directories (with .gdb.zip extension), provided they contain a .gdb directory at their first level.
A specific .gdbtable file (including "system" tables) can also be opened directly.
Curve in geometries are supported with GDAL >= 2.2.
Write and update capabilities are supported since GDAL >= 3.6
The driver also supports raster layers since GDAL 3.7
Driver capabilities
Supports Create()
Added in version GDAL: 3.6
Supports Georeferencing
This driver supports georeferencing
Supports VirtualIO
This driver supports virtual I/O operations (/vsimem/, etc.)
Spatial filtering
Since GDAL 3.2, the driver can use the native .spx spatial indices for spatial filtering.
In earlier versions, it uses the minimum bounding rectangle included
at the beginning of the geometry blobs to speed up spatial filtering. By
default, it also builds on the fly a in-memory spatial index during
the first sequential read of a layer. Following spatial filtering
operations on that layer will then benefit from that spatial index. The
building of this in-memory spatial index can be disabled by setting the
OPENFILEGDB_IN_MEMORY_SPI
configuration option to NO.
SQL support
SQL statements are run through the OGR SQL engine. When attribute indexes (.atx files) exist, the driver will use them to speed up WHERE clauses or SetAttributeFilter() calls.
Special SQL requests
"GetLayerDefinition a_layer_name" and "GetLayerMetadata a_layer_name" can be used as special SQL requests to get respectively the definition and metadata of a FileGDB table as XML content (only available in Geodatabases created with ArcGIS 10 or above)
The "CREATE INDEX idx_name ON layer_name(field_name)" SQL request can be used to create an attribute index. idx_name must have 16 characters or less, start with a letter and contain only alphanumeric characters or underscore. Multiple column indices are not supported.
The "RECOMPUTE EXTENT ON layer_name" SQL request can be used to trigger an update of the layer extent in layer metadata. This is useful when updating or deleting features that modify the general layer extent.
The "REPACK" or "REPACK layer_name" SQL requests can be used respectively to compact the whole database or a given layer. This is useful when doing editions (updates or feature deletions) that may leave holes in .gdbtable files. The REPACK command causes the .gdbtable to be rewritten without holes. Note that compaction does not involve extent recomputation.
Configuration options
Configuration options can be specified in command-line tools using the syntax --config <NAME>=<VALUE>
or using functions such as CPLSetConfigOption()
(C) or gdal.config_options
(Python).
The following configuration options are available:
OPENFILEGDB_IN_MEMORY_SPI=[YES/NO]: If
YES
, an in-memory spatial index will be built instead of using the native spatial index. See Spatial filtering.OPENFILEGDB_DEFAULT_STRING_WIDTH=<integer>: Width of string fields to use on creation, when the width specified to CreateField() is the unspecified value 0. This defaults to 65536.
Dataset open options
Open options can be specified in command-line tools using the syntax -oo <NAME>=<VALUE>
or by providing the appropriate arguments to GDALOpenEx()
(C) or gdal.OpenEx
(Python).
The following open options are supported:
LIST_ALL_TABLES=[YES/NO]: (GDAL >= 3.4) This may be "YES" to force all tables, including system and internal tables (such as the GDB_* tables) to be listed
Dataset Creation Options
None.
Layer Creation Options
Layer creation options can be specified in command-line tools using the syntax -lco <NAME>=<VALUE>
or by providing the appropriate arguments to GDALDatasetCreateLayer()
(C) or Dataset.CreateLayer
(Python).
The following layer creation options are supported:
TARGET_ARCGIS_VERSION=[ALL/ARCGIS_PRO_3_2_OR_LATER]: (GDAL >= 3.9) Defaults to
ALL
. ArcGIS version that the dataset must be compatible with. If creation of Integer64, Date, Time field types is needed, theARCGIS_PRO_3_2_OR_LATER
must be selected. If set or let to the default valueALL
, those types will be respectively be encoded to fallback types (Float64 instead of Integer64, DateTime instead of Date or Time).FEATURE_DATASET=<string>: When this option is set, the new layer will be created inside the named FeatureDataset folder. If the folder does not already exist, it will be created.
LAYER_ALIAS=value: Set layer name alias.
On reading, this information is exposed in the ALIAS_NAME layer metadata item (GDAL >= 3.8).
GEOMETRY_NAME=value: Defaults to
SHAPE
. Set name of geometry column in new layer.GEOMETRY_NULLABLE=[YES/NO]: Defaults to
YES
. Whether the values of the geometry column can be NULL. Can be set to NO so that geometry is required.FID=value: Defaults to
OBJECTID
. Name of the OID column to create.XYTOLERANCE, ZTOLERANCE, MTOLERANCE=value: These parameters control the snapping tolerance used for advanced ArcGIS features like network and topology rules. They won't effect any OGR operations, but they will by used by ArcGIS. The units of the parameters are the units of the coordinate reference system.
ArcMap 10.0 and OGR defaults for XYTOLERANCE are 0.001m (or equivalent) for projected coordinate systems, and 0.000000008983153° for geographic coordinate systems. ArcMap 10.0 and OGR defaults for ZTOLERANCE and MTOLERANCE are 0.0001.
XORIGIN, YORIGIN, ZORIGIN, MORIGIN, XYSCALE, ZSCALE, ZORIGIN=value: These parameters control the coordinate precision grid inside the file geodatabase. The dimensions of the grid are determined by the origin, and the scale. The origin defines the location of a reference grid point in space. The scale is the reciprocal of the resolution. So, to get a grid with an origin at 0 and a resolution of 0.001 on all axes, you would set all the origins to 0 and all the scales to 1000.
Important: The domain specified by
(xmin=XORIGIN, ymin=YORIGIN, xmax=(XORIGIN + 9E+15 / XYSCALE), ymax=(YORIGIN + 9E+15 / XYSCALE))
needs to encompass every possible coordinate value for the feature class. If features are added with coordinates that fall outside the domain, errors will occur in ArcGIS with spatial indexing, feature selection, and exporting data.ArcMap 10.0 and OGR defaults:
For geographic coordinate systems: XORIGIN=-400, YORIGIN=-400, XYSCALE=1000000000
For projected coordinate systems: XYSCALE=10000 for the default XYTOLERANCE of 0.001m. XORIGIN and YORIGIN change based on the coordinate system, but the OGR default of -2147483647 is suitable with the default XYSCALE for all coordinate systems.
ZORIGIN and MORIGIN: -100000
ZSCALE and MSCALE: 10000
COLUMN_TYPES=value: A list of strings of format field_name=fgdb_field_type (separated by comma) to force the FileGDB column type of fields to be created.
DOCUMENTATION=<string>: XML documentation for the layer.
CONFIGURATION_KEYWORD=[DEFAULTS/MAX_FILE_SIZE_4GB/MAX_FILE_SIZE_256TB]: Customize how data is stored. By default text in UTF-8 and data up to 1TB
CREATE_SHAPE_AREA_AND_LENGTH_FIELDS=[YES/NO]: Defaults to
NO
. When this option is set, a Shape_Area and Shape_Length special fields will be created for polygonal layers (Shape_Length only for linear layers). These fields will automatically be populated with the feature's area or length whenever a new feature is added to the dataset or an existing feature is amended. When using ogr2ogr with a source layer that has Shape_Area/Shape_Length special fields, and this option is not explicitly specified, it will be automatically set, so that the resulting FileGeodatabase has those fields properly tagged.
64-bit integer field support
Added in version 3.9.
On creation, 64-bit integer field support requires setting the TARGET_ARCGIS_VERSION
layer creation option to ARCGIS_PRO_3_2_OR_LATER
.
Note that Esri recommends to restrict the
range of 64-bit integer values to [-9007199254740991, 9007199254740991] for the
larger compatibility. GDAL will allow writing values outside of that range without
warning, and can also read them fine.
Field domains
Added in version 3.3.
Coded and range field domains are supported.
Relationships
Added in version 3.6.
Relationship retrieval, creation, deletion and updating is supported.
Hiearchical organization
Added in version 3.4.
The hierarchical organization of tables and feature classes as top-level
element or within a feature dataset can be explored using the methods
GDALDataset::GetRootGroup()
,
GDALGroup::GetGroupNames()
, GDALGroup::OpenGroup()
,
GDALGroup::GetVectorLayerNames()
and GDALGroup::OpenVectorLayer()
Transaction support
The driver implements transactions at the database level, through an emulation (as per RFC 54: Dataset transactions). This works by backing up the current state of the modified parts of a geodatabase after StartTransaction(force=TRUE) is called. If the transaction is committed, the backup copy is destroyed. If the transaction is rolled back, the backup copy is restored.
Note that this emulation has an unspecified behavior in case of concurrent updates (with different connections in the same or another process).
Geometry coordinate precision
Added in version GDAL: 3.9
The driver supports reading and writing the geometry coordinate
precision, using the XYResolution, ZResolution and MResolution members of
the OGRGeomCoordinatePrecision
settings of the
OGRGeomFieldDefn
. XYScale
is computed as 1.0 / XYResolution
(and similarly for the Z and M components). The tolerance setting is computed
as being one tenth of the resolution
On reading, the coordinate precision grid parameters are returned as format
specific options of OGRGeomCoordinatePrecision
with the
FileGeodatabase
format key, with the following option key names:
XYScale
, XYTolerance
, XYOrigin
,
ZScale
, ZTolerance
, ZOrigin
,
MScale
, MTolerance
, MOrigin
. On writing, they are also honored
(they will have precedence over XYResolution, ZResolution and MResolution).
On layer creation, the XORIGIN, YORIGIN, ZORIGIN, MORIGIN, XYSCALE, ZSCALE,
ZORIGIN, XYTOLERANCE, ZTOLERANCE, MTOLERANCE layer creation options will be
used in priority over the settings of OGRGeomCoordinatePrecision
.
Advantages of the OpenFileGDB driver, compared to the FileGDB driver
Can read ArcGIS 9.X Geodatabases, and not only 10 or above.
Can open layers with any spatial reference system.
Thread-safe (i.e. datasources can be processed in parallel).
Uses the VSI Virtual File API, enabling the user to read a Geodatabase in a ZIP file or stored on a HTTP server.
Faster on databases with a big number of fields.
Does not depend on a third-party library.
Robust against corrupted Geodatabase files.
Limitations
Reading data compressed in SDC format (Smart Data Compression) or in CDF format (Compressed Data Format) is not supported. For CDF, the FileGDB driver can be used.
Support for tables with 64-bit OBJECTIDs (which require GDAL >= 3.10), where OBJECTIDs are sparse, is read-only and incomplete. The driver will emit a warning if such situation occurs, and will attribute non-faithful OBJECTIDs.
Examples
Read layer from FileGDB and load into PostGIS:
ogr2ogr -overwrite -f "PostgreSQL" PG:"host=myhost user=myuser dbname=mydb password=mypass" "C:\somefolder\BigFileGDB.gdb" "MyFeatureClass"
Get detailed info for FileGDB:
ogrinfo -al "C:\somefolder\MyGDB.gdb"
Get detailed info for a zipped FileGDB:
ogrinfo -al "C:\somefolder\MyGDB.gdb.zip"
Links
OpenFileGDB raster documentation page
FileGDB driver, relying on the FileGDB API SDK
Reverse-engineered specification of the FileGDB format
Credits
Edition/write capabilities of the driver have been funded by the following organizations: Provincie Zuid-Holland, Provincie Gelderland and Gemeente Amsterdam.