Skip to contents

Returns a data.table::data.table of all datasets available in the geefetch registry, including their GEE collection ID, domain, spatial resolution, temporal resolution, and description.

Custom datasets registered via gee_register_dataset() are included.

Usage

gee_datasets(domain = NULL)

Arguments

domain

Character. Filter to a specific domain (e.g., "Vegetation", "Climate", "Soil (AU)"). Default NULL returns all.

Value

A data.table::data.table with columns:

dataset

Normalised dataset ID (use with read_gee())

collection

GEE ImageCollection ID

domain

Scientific domain

resolution

Spatial resolution description

temporal

Temporal resolution

description

Human-readable description

date_start

Earliest available date (or NA for static)

Examples

if (FALSE) { # interactive()
gee_datasets()
gee_datasets(domain = "Vegetation")
}