Krzysztof Dyba

Results 222 comments of Krzysztof Dyba

Isn't this currently fixed by #1938? It seems to be much better now: ``` median mem_alloc filter 31.1ms 9.61MB filter.sf 76.6ms 17.16MB ```

Today I re-ran benchmark and after update `sf 1.0.9 -> 1.0.12` and `R 4.2.2 -> 4.3.0` I can see that the `st_sample()` function is ~3 times faster (7.44 s ->...

This should now be fixed with https://github.com/r-spatial/sf/commit/558c693f647d8a1cef44cdd36dd311f4b20dd5ca (see also #1409).

@abdulrr, make sure you updated `{sf}` to the devel version (1.0.10). `install.packages("sf", repos = "https://r-spatial.r-universe.dev")` or `remotes::install_github("r-spatial/sf")`

@ItsMeVictor, I think it will be better if you open a new issue and post the installation log with error and session information.

BTW: In the cheatsheet the functions are grouped into 6 groups, maybe it will be useful: https://github.com/rstudio/cheatsheets/blob/main/sf.pdf

Hi @edzer, could you look into this if you find time?

If you would like to check the area of polygons, you can use the `st_area()` function. I think it can also be useful in this case to count the number...

This problem has been fixed in GDAL 3.8 (with `s2` enabled). ```r library("sf") #> Linking to GEOS 3.12.1, GDAL 3.8.4, PROJ 9.3.1; sf_use_s2() is TRUE st_point(c(170, 0))|> st_sfc(crs = 4326)...