Edzer Pebesma

Results 708 comments of Edzer Pebesma

I run ``` R -e 'devtools::document() ``` which, afaics, only touches modified files.

package stars has an unexported function `stars:::bb_shrink` that shrinks a bounding box with a factor; giving it a negative factor will expand it. Something like this could be used as...

The `--static` flag may be needed because CRAN binaries are all statically linked; to remove it we might have to branch on whether we're in a homebrew setting or in...

This county doesn't include a grid cell center: ```r plot(fg10w[, , , 1], reset = F, axes = TRUE) points(st_coordinates(fg10w[,,,1])[,1:2], pch = 3) plot(counties[63, ], add = T, col =...

I've submitted sf to CRAN; this causes an error in package NLMR, see https://win-builder.r-project.org/incoming_pretest/sf_0.9-0_20200319_213604/reverseDependencies/summary.txt

Pkg rasterDT also affected, see link above.

Also package reproducible, see link above.

Good point, these are absolutely not needed! The bigger problem with large POINT datasets is that ```r > format(object.size(st_coordinates(smp)), units = "auto") [1] "781.9 Kb" ``` i.e. representing them as...

Thanks! I think your sample is a stratified random sample, and your algorithm works because your polygons (buffers) are of equal size. The issue I tried to address is to...