Skip to content
New issue

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

edl_search() bounding_box not working #14

Open
eeholmes opened this issue Apr 30, 2024 · 0 comments
Open

edl_search() bounding_box not working #14

eeholmes opened this issue Apr 30, 2024 · 0 comments

Comments

@eeholmes
Copy link

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=",")
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant