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
Repro based on :R-ArcGIS/arcpbf#2
library(arcgislayers) PRCP_pred <- "https://services.arcgis.com/GL0fWlNkwysZaKeV/arcgis/rest/services/TXLA_ZCTA_PRCPpred/FeatureServer/0" |> arc_open() -> x res <- x |> arc_select(n_max = 500, page_size = 10)
We need to 1 fix this and 2 add tests.
There is some wonkiness with the rlang standalone checks that break the check
here is the workaround code
check_number_whole(as.integer(page_size), min = 1, allow_null = TRUE) check_number_whole( as.integer(page_size), max = as.double(x$maxRecordCount), allow_null = TRUE )
The text was updated successfully, but these errors were encountered:
81efbb2
No branches or pull requests
Repro based on :R-ArcGIS/arcpbf#2
We need to 1 fix this and 2 add tests.
There is some wonkiness with the rlang standalone checks that break the check
here is the workaround code
The text was updated successfully, but these errors were encountered: