Krzysztof Dyba

Results 54 issues of Krzysztof Dyba

I think there should be additional arguments in the function getSentinel_data() - unzip and file.remove if you don't want zip archives but only unzipped catalogs.

feature idea

What do you think about not returning the `"lon"`, `"lat"`, `"x"`, `"y"` names in `st_sample()` to reduce object size? I suspect they are not needed, but please correct me if...

Would it be possible to improve the performance of `aggregate()` function, in particular the processing of data that is loaded into memory (it seems fine in `proxy` case)? For the...

Could you consider support for line geometry in the `st_extract` function? I compared it with the **raster** package and it is more easier and user-friendly, but maybe there is some...

If there was possibility in the future, it would be great if spatial indexes could be implemented like in `{sf}` (here is related blogpost: https://r-spatial.org/r/2017/06/22/spatial-index.html).

This is nothing important, but comparing the `terra::buffer()` with the `geos::geos_buffer()` we can see the difference in performance, which can probably be reduced. ```r library("geos") library("terra") n = 50000 x...

As far as I know, the only way to find the raster resolution is to use the `st_dimensions()`. In `{raster}` and `{terra}` there is dedicated `res()` function. Could you consider...

I think you should add information about the package to the [Spatial CRAN Task View](https://cran.r-project.org/web/views/Spatial.html). Here you can send PR: https://github.com/cran-task-views/Spatial

Repost from: https://github.com/r-spatial/sf/issues/2202 ```r library("terra") gdal(warn = 1) n = 5 df = data.frame(x = runif(n), y = runif(n)) df = vect(df, geom = c("x", "y"), crs = "epsg:4326") df$name...

Could you consider implementing [column-oriented read API for vector layers](https://gdal.org/development/rfc/rfc86_column_oriented_api.html)? This is just done in [vapour](https://github.com/hypertidy/vapour/commit/f9bac832904c01bfe1551e815df1aa81bc8e2006) and there is [PR proposal](https://github.com/r-spatial/sf/pull/2036) for `{sf}`. For these two packages, the speedup in...