Skip to content

Commit cc609e1

Browse files
committed
Deploying to gh-pages from @ ab00809 🚀
1 parent 17b544b commit cc609e1

18 files changed

+73
-43
lines changed

articles/sf7.html

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

articles/sf7.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -447,26 +447,26 @@ system.time({
447447
uk_buffer_sf = st_buffer(uk_projected, dist = 20000)
448448
})
449449
## user system elapsed
450-
## 0.03 0.00 0.03
450+
## 0.026 0.003 0.029
451451
# sf way with few than the 30 segments in the buffer
452452
system.time({
453453
uk_projected = st_transform(uk_sfc, 27700)
454454
uk_buffer_sf2 = st_buffer(uk_projected, dist = 20000, nQuadSegs = 4)
455455
})
456456
## user system elapsed
457-
## 0.009 0.001 0.008
457+
## 0.008 0.000 0.007
458458
# s2 with default cell size
459459
system.time({
460460
uk_buffer = s2_buffer_cells(uk, distance = 20000)
461461
})
462462
## user system elapsed
463-
## 0.024 0.000 0.025
463+
## 0.024 0.000 0.024
464464
# s2 with 10000 cells
465465
system.time({
466466
uk_buffer2 = s2_buffer_cells(uk, distance = 20000, max_cells = 10000)
467467
})
468468
## user system elapsed
469-
## 0.227 0.000 0.227
469+
## 0.223 0.000 0.223
470470
# s2 with 100 cells
471471
system.time({
472472
uk_buffer2 = s2_buffer_cells(uk, distance = 20000, max_cells = 100)

news/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

news/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## version 1.1-1
44

5-
- add the option `by_element = TRUE` to most geometry predicates,
5+
- add the option `by_element = TRUE` to binary geometry predicates,
66
measures and transformers;
77
[\#2594](https://github.com/r-spatial/sf/issues/2594) and
88
[\#2595](https://github.com/r-spatial/sf/issues/2595) by

pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ articles:
99
sf5: sf5.html
1010
sf6: sf6.html
1111
sf7: sf7.html
12-
last_built: 2026-03-26T11:39Z
12+
last_built: 2026-03-26T17:14Z
1313
urls:
1414
reference: https://r-spatial.github.io/sf/reference
1515
article: https://r-spatial.github.io/sf/articles

reference/gdal_utils.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/gdal_utils.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ st_read(in_file)
187187
#> Band 1 Block=20x20 Type=Byte, ColorInterp=Gray
188188
#> Computed Min/Max=74.000,255.000
189189
#> Reading layer `storms_xyz' from data source
190-
#> `/tmp/RtmpcX5HJc/file2394631ad0d7.gpkg' using driver `GPKG'
190+
#> `/tmp/Rtmp2edrzy/file233b27134f58.gpkg' using driver `GPKG'
191191
#> Simple feature collection with 71 features and 0 fields
192192
#> Geometry type: LINESTRING
193193
#> Dimension: XYZ

reference/geos_binary_ops.html

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/geos_binary_ops.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ collections
66
## Usage
77

88
``` r
9-
st_intersection(x, y, ...)
9+
st_intersection(x, y, ..., by_element = FALSE)
1010

1111
# S3 method for class 'sfc'
1212
st_intersection(x, y, ...)
@@ -39,6 +39,11 @@ st_snap(x, y, tolerance)
3939
arguments passed on to
4040
[s2_options](https://r-spatial.github.io/s2/reference/s2_options.html)
4141

42+
- by_element:
43+
44+
logical; if `TRUE`, return pair-wise computed geometries, rather than
45+
set-wise; can be used for all binary operations
46+
4247
- tolerance:
4348

4449
tolerance values used for `st_snap`; numeric value or object of class

reference/geos_binary_pred.html

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)