We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looks like it needs a paste(bounding_box, collapse=",").
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=",") )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looks like it needs a
paste(bounding_box, collapse=",")
.This throws error
This does not
The text was updated successfully, but these errors were encountered: