Krzysztof Dyba
Krzysztof Dyba
> What code are you using to plot? ``` n = 10 smp = sample(gdf, n) smp.plot() ```
Yes, points only. Anyway, the figure looks correct.
Thanks! One more small issue. I noticed that `items_select()` and `items_compact()` are not listed here: https://github.com/brazil-data-cube/rstac/blob/b-1.0.1/R/items-funs.R#L7-L52
Thank you! > Additionally, the correct way to use variables inside expressions in items_filter() is by passing them inside double curly braces, for example {{id}}, to ensure proper escaping. Maybe...
Did you try cutting to the bounding box? Then it should work fast. See also [this issue](https://github.com/r-spatial/stars/issues/541). ```r st_crop
Hey, thanks for the message. I have the benchmark repositories here with packages for [vector](https://github.com/kadyb/vector-benchmark) and [raster](https://github.com/kadyb/raster-benchmark) data processing, but I haven't updated it in a long time. We also...
I also thought about comparing `gdalraster` in the context of rasters. Chris recently added initial support for vectors too. The most important difference between packages, e.g. `terra` and `sf` is...
@atsyplenkov, the new version of GDAL includes many new tools (https://gdal.org/en/latest/programs/index.html#gdal-application), e.g. focal statistics, zonal statistics, raster cropping, raster algebra, so now it would be possible to compare different spatial...
@liamxg, I think you can remove the outlier coordinates and then at least plot the points that have the correct coordinates. ```r library("sf") library("ggplot2") x = read_sf("wlf_nhr_fl_dfomasterlist_20190418.shp") crds = st_coordinates(x)...
> Why are the geometries of 3105 records suppressed? I'm just guessing. Maybe they started to get information about the spatial extent of the floods since certain time (e.g. based...