Skip to content

Commit

Permalink
Implement GDAL driver detection via {vapour} (#16)
Browse files Browse the repository at this point in the history
* Implement GDAL driver detection via {vapour} for #15

* Update docs
  • Loading branch information
brownag committed Mar 2, 2024
1 parent 69dcb8b commit 338febb
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 16 deletions.
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: gpkg
Type: Package
Title: Utilities for the Open Geospatial Consortium 'GeoPackage' Format
Version: 0.0.8
Version: 0.0.9
Authors@R: person(given="Andrew", family="Brown", email="brown.andrewg@gmail.com", role = c("aut", "cre"))
Maintainer: Andrew Brown <brown.andrewg@gmail.com>
Description: Build Open Geospatial Consortium 'GeoPackage' files (<https://www.geopackage.org/>). 'GDAL' utilities for reading and writing spatial data are provided by the 'terra' package. Additional 'GeoPackage' and 'SQLite' features for attributes and tabular data are implemented with the 'RSQLite' package.
Expand All @@ -14,14 +14,15 @@ Imports:
Suggests:
RSQLite,
terra (>= 1.6),
vapour,
tinytest,
dplyr,
dbplyr,
knitr,
rmarkdown
License: CC0
Depends: R (>= 3.1.0)
RoxygenNote: 7.2.3
RoxygenNote: 7.3.1
Roxygen: list(markdown = TRUE)
Encoding: UTF-8
LazyData: true
Expand Down
55 changes: 48 additions & 7 deletions R/gpkg-io.R
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#' Read data from a GeoPackage
#'
#' Experimental: This function is being evaluated for its scope compared to other more general functions that perform similar operations (i.e. `gpkg_tables()`).
#' This function creates a _geopackage_ object with references to all tables from the GeoPackage source specified in `x`. For a simple list of tables see `gpkg_tables()`.
#'
#' @param x Path to GeoPackage
#' @param connect Connect to database and store connection in result? Default: `FALSE`
#' @param quiet Hide printing of gdalinfo description to stdout. Default: `TRUE`
#' @return A _geopackage_ object (list containing tables, grids and vector data)
#' @export
#' @seealso [gpkg_tables()]
#' @keywords io
gpkg_read <- function(x, connect = FALSE, quiet = TRUE) {
if (inherits(x, 'geopackage')) {
Expand Down Expand Up @@ -72,6 +73,9 @@ gpkg_read <- function(x, connect = FALSE, quiet = TRUE) {
#' @param gdal_options Additional `gdal_options`, passed to `terra::writeRaster()`
#' @param ... Additional arguments are passed as GeoPackage "creation options." See Details.
#' @details Additional, non-default GeoPackage creation options can be specified as arguments to this function. The full list of creation options can be viewed [here](https://gdal.org/drivers/raster/gpkg.html#creation-options) or in the `gpkg_creation_options` dataset. The name of the argument is `creation_option` and the value is selected from one of the elements of `values` for that option.
#'
#' If `x` contains source file paths, any comma-separated value (CSV) files are treated as attribute data--even if they contain a geometry column. GeoPackage source file paths are always treated as vector data sources, and only one layer will be read from the source and written to the target. If you need to read raster data from a GeoPackage first create a `SpatRaster` from the layer of interest (see `gpkg_rast()`) before passing to `gpkg_write()`. If you need to read multiple layers from any multi-layer source read them individually into suitable objects. For a source GeoPackage containing multiple layers you can use `gpkg_read()` (returns a _geopackage_ object) or `gpkg_tables()` (returns a _list_ object).
#'
#' @return Logical. `TRUE` on successful write of at least one grid.
#' @seealso [gpkg_creation_options]
#' @export
Expand Down Expand Up @@ -102,20 +106,57 @@ gpkg_write <- function(x,
}

.gpkg_process_sources <- function(x, ...) {

if (!is.list(x) || is.data.frame(x)) {
x <- list(x)
}

# TODO: extend this; only intended for prototyping before general sln

# objects with a file-based
# objects with a file source
src_raster <- vapply(x, inherits, logical(1), c('SpatRaster', 'SpatRasterCollection'))
src_vector <- vapply(x, inherits, logical(1), 'SpatVectorProxy')
obj_vector <- vapply(x, inherits, logical(1), c('sf', 'SpatVector'))
obj_attrib <- vapply(x, inherits, logical(1), 'data.frame')
pth_raster <- vapply(x, .is.file, logical(1), "tif+|vrt|grd|png")
pth_vector <- vapply(x, .is.file, logical(1), "shp|gpkg")
pth_attrib <- vapply(x, .is.file, logical(1), "csv")

# pth_raster <- vapply(x, .is.file, logical(1), "tif+|vrt|grd|png")
# pth_vector <- vapply(x, .is.file, logical(1), "shp|gpkg")
# pth_attrib <- vapply(x, .is.file, logical(1), "csv")
pth_file <- vapply(x, .is.file, logical(1), ".*")

# TODO: gdal is not used to read attributes,
# provide support for some other tabular data formats?
# arrow? openxlsx?
pth_attrib <- pth_file & vapply(x, .is.file, logical(1), "csv")
pth_raster <- rep(FALSE, length(x))
pth_vector <- rep(FALSE, length(x))

if (any(pth_file)) {
if (!requireNamespace("vapour")) {
stop("package 'vapour' is required to auto-detect GDAL drivers needed to read from arbitrary file paths", call. = FALSE)
}

gdal_drv <- vapply(x, function(y) {
if (!is.character(y)) {
""
} else
vapour::vapour_driver(y)
}, character(1))

drv <- vapour::vapour_all_drivers()
drm <- match(gdal_drv, drv$driver)


pth_raster <- pth_file & drv$raster[drm]

# TODO: how to handle GPKG as a raster and vector source?
pth_raster[gdal_drv == "GPKG"] <- FALSE

pth_vector <- pth_file & drv$vector[drm]

# TODO: handling of CSV files as attributes/without GDAL
# filter vapour drivers to subset that terra can readwrite
pth_vector[gdal_drv == "CSV"] <- FALSE
}


# classify list of object input grid, features, attributes
# - each processing function handles local objects and/or file paths
Expand Down
8 changes: 5 additions & 3 deletions R/gpkg-table.R
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ gpkg_table_pragma.geopackage <- function(x, table_name = NULL, ...) {
#' @export
#' @rdname gpkg_table
#' @examplesIf !inherits(try(requireNamespace("RSQLite", quietly = TRUE)), 'try-error') &&!inherits(try(requireNamespace("dbplyr", quietly = TRUE)), 'try-error') && !inherits(try(requireNamespace("terra", quietly = TRUE)), 'try-error')
#' @description `gpkg_table()`: access a specific table (by name) and get a "lazy" `tibble` object referencing that table
#' @description `gpkg_table()`: Access a specific table (by name) and get a "lazy" {dbplyr} _tbl_SQLiteConnection_ object referencing that table
#' @return `gpkg_table()`: A 'dbplyr' object of class _tbl_SQLiteConnection_
#' @examples
#'
Expand Down Expand Up @@ -135,22 +135,23 @@ gpkg_table.default <- function(x,
dplyr::tbl(con, table_name, ...)
}

#' @description `gpkg_collect()`: alias for `gpkg_table(..., collect=TRUE)`
#' @description `gpkg_collect()`: Alias for `gpkg_table(..., collect=TRUE)`
#' @return `gpkg_collect()`: An object of class _data.frame_
#' @rdname gpkg_table
#' @export
gpkg_collect <- function(x, table_name, query_string = FALSE, ...) {
gpkg_table(x, table_name, ..., query_string = query_string, collect = TRUE)
}

#' @description `gpkg_tbl()`: shorthand for `gpkg_table(..., collect=FALSE)`(default) that always returns a 'dplyr' object.
#' @description `gpkg_tbl()`: Alias for `gpkg_table(..., collect=FALSE)`(default) that _always_ returns a _tbl_SQLiteConnection_ object.
#' @return `gpkg_tbl()`: An object of class _tbl_SQLiteConnection_
#' @rdname gpkg_table
#' @export
gpkg_tbl <- function(x, table_name, ...) {
gpkg_table(x, table_name, ..., collect = FALSE)
}

#' @description `gpkg_rast()`: Get a _SpatRaster_ object corresponding to the specified `table_name`
#' @return `gpkg_rast()`: A 'terra' object of class _SpatRaster_
#' @export
#' @rdname gpkg_table
Expand All @@ -167,6 +168,7 @@ gpkg_rast <- function(x, table_name = NULL, ...) {
}


#' @description `gpkg_rast()`: Get a _SpatVector_ object corresponding to the specified `table_name`
#' @return `gpkg_vect()`: A 'terra' object of class _SpatVector_ (may not contain geometry columns)
#' @export
#' @rdname gpkg_table
Expand Down
5 changes: 4 additions & 1 deletion man/gpkg_read.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions man/gpkg_table.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions man/gpkg_write.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 338febb

Please sign in to comment.