Closed eliocamp closed 3 months ago
Typo, default user should be ecmwfr
the package name (missing r).
Fixed in #138
Given the current setup I realized you can now easily mix and match requests. I don't think you could previously as the username would be different.
# CDS
cds_request <-
list(
product_type = 'reanalysis',
variable = 'geopotential',
year = '2024',
month = '03',
day = '01',
time = '13:00',
pressure_level = '1000',
data_format = 'grib',
dataset_short_name = 'reanalysis-era5-pressure-levels',
target = 'test.grib'
)
# ADS
ads_request <- list(
dataset_short_name = "cams-global-radiative-forcings",
variable = "radiative_forcing_of_carbon_dioxide",
forcing_type = "instantaneous",
band = "long_wave",
sky_type = "all_sky",
level = "surface",
version = "2",
year = "2018",
month = "06",
target = "download.grib"
)
combined_request <- list(
cds_request,
ads_request
)
files <- wf_request_batch(combined_requests, path = "~/Downloads/")
I get this error message. Seems to be related to keyring management.
Created on 2024-08-25 with reprex v2.1.1