Skip to contents

Filter the Cal-Adapt catalog by any combination of metadata fields. All filters are combined with AND logic.

Usage

cae_search(
  activity = NULL,
  model = NULL,
  scenario = NULL,
  variable = NULL,
  timescale = NULL,
  resolution = NULL
)

Arguments

activity

character; "WRF" or "LOCA2"

model

character; GCM source_id (e.g. "CESM2", "MIROC6")

scenario

character; experiment_id (e.g. "ssp370", "historical")

variable

character; variable_id (e.g. "t2", "prec")

timescale

character; table_id (e.g. "1hr", "day", "mon")

resolution

character; grid_label (e.g. "d01" for 45km, "d02" for 9km, "d03" for 3km)

Value

data.frame of matching catalog entries

Examples

if (FALSE) { # \dontrun{
# Find all hourly WRF temperature data at 45km
cae_search(activity = "WRF", variable = "t2",
          timescale = "1hr", resolution = "d01")
} # }