Daniel Possenriede

Results 62 issues of Daniel Possenriede

This ought to fix #207. ``` r library(ggmap) register_google(key = Sys.getenv("GOOGLE_GEOCODE_KEY")) ``` ## `urlonly` for multiple locations ``` r places V1 #> 1 https://maps.googleapis.com/maps/api/geocode/json?address=Houston%2C%20Texas&key=my_google_key #> 2 https://maps.googleapis.com/maps/api/geocode/json?address=Washington%2C%20DC&key=my_google_key ``` ## `force`...

Just a small change to the order of the 'lat' and 'lon' columns for `geocode()`. Instead of 'lon', 'lat' they are now 'lat', 'lon' so as to make it easy...

https://r-lib.github.io/p/pak/stable/win.binary/mingw32/x86_64 seems to point to outdated version, namely 0.2.0.9000. ``` r (repo [1] "https://r-lib.github.io/p/pak/stable/win.binary/mingw32/x86_64" install.packages("pak", repos = repo) #> Installing package into 'C:/Users/Daniel/Documents/R/win-library/4.1' #> (as 'lib' is unspecified) #> package...

Linting a package that is not installed may generate false positives for (at least) `object_usage_linter`, see e.g. https://github.com/r-lib/actions/issues/557 1. Why is that exactly? Is #91 still relevant here? 2. (Where)...

documentation

There are some inconsistencies across the functions that retrieve auth tokens from env vars/options w.r.t. documentation and whether or not they are exported: function | roxygen docs | `@noRd` |...

feature

vcr creates empty cassettes on interactive tests, cf. #225 Steps to reproduce: 1. clone https://github.com/maelle/exemplighratia/ locally 2. checkout `vcrtest` branch 3. `devtools::load_all(".")` 4. open `tests/testthat/test-api-status.R` and run test locally (or...

Now that [{httr2} is on CRAN](https://cloud.r-project.org/package=httr2) and supports [mocking](https://github.com/r-lib/httr2/pull/61), could {vcr} support it as well?

I corrected some typos, linkified URLs and roxygenized the documentation (the `key` parameter was not visible in the documentation before). Furthermore I fixed the checks on `viewbox` in `bb_lookup` so...

Changes in devel depend on the upcoming vcr v0.7, so wait for that to be released to CRAN before merging.

`version = 3` is only supported by R >= 3.5.0, so this should be the minimal dependency version, IMHO. Are there tests for `use_dependency()` in `use_data()`? I haven't found any...