Skip to content

Commit

Permalink
Merge pull request #153 from jessecambon/fix/152
Browse files Browse the repository at this point in the history
Fix/152
  • Loading branch information
jessecambon authored Oct 24, 2021
2 parents 71dd012 + 8852b41 commit 4fbfbc4
Show file tree
Hide file tree
Showing 16 changed files with 651 additions and 136 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# tidygeocoder (development version)

- Corrected documentation for `quiet` parameter in `geo()` and `reverse_geo()`
- Reconfigured the vignette so that it is precomputed and is not executed during
`R CMD check` (ie. `devtools::check()`). Also added a check at the beginning of the vignette to check for the availability of APIs. This fixes an issue that occurred on Mac CRAN checks ([#152](https://github.com/jessecambon/tidygeocoder/issues/152)).

# tidygeocoder 1.0.4

Expand Down
10 changes: 5 additions & 5 deletions R/geo.R
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,19 @@ progress_geo <- function(pb = NULL, ...) {
#'
#' @param min_time minimum amount of time for a query to take (in seconds). If NULL
#' then min_time will be set to the default value specified in [min_time_reference].
#' @param progress_bar if TRUE then a progress bar will be displayed to track query
#' progress for single input geocoding (1 input per query). By default the progress bar
#' @param progress_bar if TRUE then a progress bar will be displayed
#' for single input geocoding (1 input per query). By default the progress bar
#' will not be shown for code executed when knitting R Markdown files or code within
#' an RStudio notebook chunk. Can be set permanently with `options(tidygeocoder.progress_bar = FALSE)`.
#' @param quiet if TRUE then console messages that are displayed by default
#' regarding queries will be suppressed. Can be set permanently with `options(tidygeocoder.quiet = TRUE)`.
#' regarding queries will be suppressed. FALSE is default.
#' Can be set permanently with `options(tidygeocoder.quiet = TRUE)`.
#' @param api_url custom API URL. If specified, the default API URL will be overridden.
#' This parameter can be used to specify a local Nominatim server, for instance.
#' @param timeout query timeout (in minutes)
#'
#' @param flatten if TRUE (default) then any nested dataframes in results are flattened if possible.
#' Note that in some cases results are flattened regardless such as for
#' Geocodio batch geocoding.
#' Note that in some cases results are flattened regardless such as for Geocodio batch geocoding.
#' @param batch_limit `r get_batch_limit_documentation(reverse = FALSE)`
#' @param batch_limit_error `r lifecycle::badge("deprecated")` `r get_batch_limit_error_documentation(reverse = FALSE)`
#' @param verbose if TRUE then detailed logs are output to the console. FALSE is default. Can be set
Expand Down
14 changes: 10 additions & 4 deletions docs/articles/developer_notes.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 35 additions & 35 deletions docs/articles/tidygeocoder.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ articles:
developer_notes: developer_notes.html
geocoder_services: geocoder_services.html
tidygeocoder: tidygeocoder.html
last_built: 2021-10-22T20:20Z
last_built: 2021-10-24T18:49Z
urls:
reference: https://jessecambon.github.io/tidygeocoder/reference
article: https://jessecambon.github.io/tidygeocoder/articles
Expand Down
Loading

0 comments on commit 4fbfbc4

Please sign in to comment.