sf icon indicating copy to clipboard operation
sf copied to clipboard

Simple Features for R

Results 156 sf issues
Sort by recently updated
recently updated
newest added

**Describe the bug** A point I generate by intersecting two linestrings fails expected `st_intersects` and does not yield expected `st_relate` pattern. **To Reproduce** ```library(sf) sd st_cast("LINESTRING") pt st_sfc() st_intersects(pt, lines)...

Dear @edzer, Please see below: ``` shape

**Describe the bug** Attempting to install "sf" in R on RHEL 8 system fails with error message: ``` trying URL 'https://cloud.r-project.org/src/contrib/sf_1.0-16.tar.gz' Content type 'application/x-gzip' length 3493756 bytes (3.3 MB) ==================================================...

Hi @edzer -- the `st_buffer()` with `singleSide = TRUE` works as expected on an example from https://postgis.net/docs/ST_Buffer.html, but differently on actual data. Is this an expected behavior? ``` r library(sf)...

Hey, guys. Consider updating the `st_crs()` function for the `SpatVector` objects. The trick is `terra::crs()` always returns a character vector, therefore we can skip some checks implemented in `st_crs()` and...

See [here](https://gdal.org/development/rfc/rfc99_geometry_coordinate_precision.html) ; following the release of GDAL 3.9.0 this may have implications for `sf`, like * read precision when reading an OGR source * write precision when writing *...