bart1
bart1
I wonder if the usage of tags would get more useful if it becomes easier to use them. I would imagine the convertIds function to be able to parse character...
The `rlang` package makes it possible to add classes to the error conditions (e.g. `rlang::abort`). This is a convenient feature for later working with the error messages. There are for...
While doing some investigation in to the performance of my code I found that the order of `filter` and `st_as_sf` makes an order of magnitude difference in the performance of...
I just encountered this issue (both with devel and current cran, I cant reproduce it on linux with R 3.4.3). The ceiling date of `1970-01-01 00:00:00 UTC` becomes `1969-12-02 UTC`....
When I generate an app that continuously regenerate the world the memory usage of Firefox continuously increases I use Firefox 40.0.3 on Ubuntu This is the memory usage as reported...
I was using the package with a custom server without https, and noticed that s3HTTP calls it self again through get_region, and get_location, but the arguments passed by ... get...
I just encountered an issue where installing package from a private repository using deployment tokens on gitlab fails when using `install_git` with the default `git2r` but works with `external` git....
The comparision here did not work as `RGB_stack_HARV[1]` returns a matrix. There are actually more methods for `RasterLayers` I made the third question into a comparison question
For some buckets it is desirable to not sign request (e.g. `noaa-nexrad-level2`). On the command line this can be done using `--no-sign-request`. `aws.s3` does a good attempt to retrieve credentials,...
I just noticed dates and times are considered integerish: ``` r require(rlang) #> Loading required package: rlang d [1] FALSE is_integer(d) #> [1] FALSE is_integerish(d) #> [1] TRUE t [1]...