Skip to contents

Get list of GDAL drivers and file formats

Usage

ddbs_drivers(conn = NULL)

Arguments

conn

A DBIConnection object to a DuckDB database. If not specified (conn = NULL), uses the default connection created with ddbs_default_conn() (or a temporary one).

Value

data.frame

Examples

if (FALSE) { # \dontrun{
## load package
library(duckspatial)

## database setup
conn <- ddbs_create_conn()

## check drivers
ddbs_drivers(conn)
} # }