Skip to contents

Construct a gdal_open_opts() object for the OpenFileGDB driver.

Usage

gdb_open_opts(list_all_tables = NULL, ..., .set_defaults = FALSE)

Arguments

list_all_tables

Value for LIST_ALL_TABLES ("YES"/"NO"; logical coerced). Whether to list all tables, including system/internal GDB_* tables. GDAL default "NO".

...

Additional NAME = value options passed through verbatim alongside the typed arguments. They are coerced and validated against the driver metadata in the same way, and take precedence over a typed argument that sets the same option.

.set_defaults

Logical. If TRUE, options left unset (NULL) are filled with the driver's documented GDAL metadata defaults (via the relevant gdal_vector_driver_*_opts_defaults()); user-supplied values always take precedence. Defaults to FALSE.

Value

A gdal_open_opts() object for the OpenFileGDB driver.

Examples

gdb_open_opts(list_all_tables = TRUE)
#> <gdal_open_opts/gdal_opts>
#>  Driver: OpenFileGDB
#>  Open Options: LIST_ALL_TABLES=YES
#>  Command Line: --input-format 'OpenFileGDB' --open-option 'LIST_ALL_TABLES=YES'