You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Downloading records using atlas_occurrences() is sometimes unsuccessful, but this behaviour is not consistently reproducible. Sometimes the query successfully downloads if it is re-run a few minutes later, and sometimes not at all. This makes it unclear if the error is related to the size of the query.
Sometimes the download is successful, and sometimes the output is:
This query will return 5,295,950 records
Checking queue
Current queue size: 1 inqueue ... running .......................................Error: need one of url or handle
The text was updated successfully, but these errors were encountered:
lampromicra<- galah_call() %>%
+ galah_identify("Lampromicra aerea", "Lampromicra senator"
+ ) %>%
+ galah_filter( year > 1950 & year <= 2022)%>%
+ galah_select(species)%>%
+ atlas_occurrences()
This query will return 820 records
Checking queue
Current queue size: 4 inqueue running .........................................Error: need one of url or handle
This error should be fixed by using new collapse(), compute() & collect() architecture in galah 2.0.0. Users can now send queries to API with compute(), then download later with collect(). This should avoid the time-out error that seemed to be getting hit sporadically. For example:
# Create and send query to be calculated server-siderequest<- request_data("occurrences") |>
identify("perameles") |>
filter(year>1900) |>
compute()
# Download datarequest|>
collect()
Downloading records using atlas_occurrences() is sometimes unsuccessful, but this behaviour is not consistently reproducible. Sometimes the query successfully downloads if it is re-run a few minutes later, and sometimes not at all. This makes it unclear if the error is related to the size of the query.
galah version
galah_1.5.1
Sometimes the download is successful, and sometimes the output is:
The text was updated successfully, but these errors were encountered: