Changelog
Source:NEWS.md
gbifdb 1.0.0
CRAN release: 2023-10-19
gbif_download()
now usesminioclient
as a backend, offering dramatically (100x+) better performance, especially on multi-core machines with high bandwidth network connections.gbif_local()
now defaults to duckdb backend, and utilizes duckdbfs to streamline the interface. The latest performance ofduckdb
is substantially better than alternatives.
Breaking changes
-
gbif_conn()
is deprecated
gbifdb 0.1.2
CRAN release: 2022-05-21
- include links in DESCRIPTION to the unpublished methods implemented in arrow and duckdb for high-performance access.
- update documentation to include return value on all exported functions.
gbifdb 0.1.1
- Automatically detect latest release (see
gbif_version()
). Works with local and remote sources, can also report all available versions. - add
gbif_local()
to return a remote table instead of a connection; paralleling the use ofgbif_remote()
-
gbif_conn()
(and thusgbif_local()
) gain the ability to use arrow as a backend to duckdb, and this is now the default. This improves performance and avoids crashes when all columns are requested. - default bucket set to “us-east-1” (across both
gbif_download()
andgbif_remote()
) -
gbif_download()
now automatically detects versions, downloads parquet files to a path that parallels the remote path (using release-specific subdirectories), and allows bucket to be configured. - set
to_duckdb=TRUE
by default ingbif_remote()
, creating a consistent lazy-table interface with support for windowed functions -
gbif_conn()
(andgbif_local()
) now automatically detect the path of most recent GBIF version ingbif_dir()
. No more need to to manually set path foroccurrence.parquet/
subfolder. - documentation improved.