rsgeo icon indicating copy to clipboard operation
rsgeo copied to clipboard

R bindings to the geo Rust crate

Results 21 rsgeo issues
Sort by recently updated
recently updated
newest added

`line_segmentize()` should always return n linestrings if it's going to work as expected in other functions. In this case `n = 6` but the object returned has a length of...

`rsgeo` has been available for several months on CRAN. Maybe this is good time to add it to the [CRAN Spatial Task View](https://github.com/cran-task-views/Spatial/) list?

Could you link the website in the About section on GitHub (https://rsgeo.josiahparry.com/)? The website probably needs a small update, so maybe it would be a good idea to set the...

Similar to the coord utilities `n_coords()`, `coord_first()`, `coord_last()` etc. Here it could be like `n_geoms()` and a `vec![MultiPoint(Point, Point, Point), MultiPoint(Point)]` would return `c(3, 1)` inspired by https://github.com/JosiahParry/rsgeo/issues/34 `lengths(expand_geoms(x))` is...

Is there a quick way of calculating knn distance from one set of points to another? i.e., I have pts and otherPts and for each point in pts want to...

Currently the [argument checks](https://github.com/JosiahParry/rsgeo/blob/800c7f73d55058d26c79bea6b6a78e10193ed854/src/rust/src/topology.rs#L95C2-L97C6) in `fn contains_sparse(x: List, y: List) -> List` do not detect if `y` is made up of points and fails with a cryptic error. - Probably...

Feel free to close, just sharing some of my experiments. This is very cool! I imagine you don't have much control over the benchmarks since you're mostly just connecting the...