Looks like it needs a paste(bounding_box, collapse=",").
short_name <- 'AVHRR_OI-NCEI-L4-GLOB-v2.1'
tbox <- c("2020-01-16", "2020-12-16")
bbox <- c(xmin=-73.5, ymin=33.5, xmax=-43.5, ymax=43.5)
This throws error
results <- edl_search(
short_name = short_name,
version = "2.1",
temporal = tbox,
bounding_box = bbox
)
This does not
results <- edl_search(
short_name = short_name,
version = "2.1",
temporal = tbox,
bounding_box = paste(bbox,collapse=",")
)
Looks like it needs a
paste(bounding_box, collapse=",").This throws error
This does not