Skip to content

Commit 020f95f

Browse files
committed
fixes #2515
1 parent 1e6ef81 commit 020f95f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: sf
2-
Version: 1.0-20
2+
Version: 1.0-21
33
Title: Simple Features for R
44
Authors@R:
55
c(person(given = "Edzer",

NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# version 1.0-21
2+
3+
* fix `st_sample()` on geodetic coordinates; #2515
4+
15
# version 1.0-20
26

37
* `st_buffer()` on geodetic coordinates with negative buffer distance now automatically switches to using GEOS, while giving a warning; #1987

R/sample.R

+5-5
Original file line numberDiff line numberDiff line change
@@ -207,20 +207,20 @@ st_poly_sample = function(x, size, ..., type = "random",
207207
}
208208
}
209209
R = s2::s2_earth_radius_meters()
210-
toRad = pi / 180
210+
toRad = pi / 180.
211211
h1 = sin(bb["ymax"] * toRad)
212212
h2 = sin(bb["ymin"] * toRad)
213-
a0 = 2 * pi * R^2. * (h1 - h2) * (bb["xmax"] - bb["xmin"]) / 360.
214-
a1 = sum(s2::s2_area(st_as_s2(x, oriented = oriented)))
213+
a0 = sum(s2::s2_area(st_as_s2(x, oriented = oriented))) # total
214+
a1 = 2 * pi * R^2. * (h1 - h2) * (bb["xmax"] - bb["xmin"]) / 360. # actual
215215
if (!is.finite(a1))
216216
stop("One or more geometries have a non-finite area")
217217
global = (a1 / a0) > .9999
218218
if (a0 / a1 > 1e4 && !force)
219219
stop(paste0("sampling box is ", format(a0/a1), " times larger than sampling region;\nuse force=TRUE if you really want this, or try setting oriented=TRUE\n(after reading the documentation)"), call. = FALSE)
220220
size = round(size * a0 / a1)
221221
} else {
222-
a0 = as.numeric(st_area(st_as_sfc(bb)))
223-
a1 = as.numeric(sum(st_area(x)))
222+
a0 = as.numeric(st_area(st_as_sfc(bb))) # total
223+
a1 = as.numeric(sum(st_area(x))) # actual
224224
# we're sampling from a box, so n should be size_desired * a0 / a1
225225
if (is.finite(a0) && is.finite(a1) && a0 > a0 * 0.0 && a1 > a1 * 0.0) { # FIXME: reqs can be removed, now we handle long/lat separately?
226226
r = size * a0 / a1

0 commit comments

Comments
 (0)