1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
|
#' @export
str.sfc <- function(object, ...) {
n <- length(object)
cat(paste0(class(object)[1], " of length ", n))
if (n > 0) {
cat("; first list element: ")
str(object[[1]], ...)
}
}
#' @export
format.sfc = function(x, ..., width = 30) {
vapply(x, format, "", ..., width = width)
}
#' Create simple feature geometry list column
#'
#' Create simple feature geometry list column, set class, and add coordinate reference system and precision
#'
#' @name sfc
#' @aliases sfc_POINT sfc_LINESTRING sfc_POLYGON sfc_MULTIPOINT sfc_MULTILINESTRING sfc_MULTIPOLYGON sfc_GEOMETRYCOLLECTION
#' @param ... zero or more simple feature geometries (objects of class \code{sfg}), or a single list of such objects; \code{NULL} values will get replaced by empty geometries.
#' @param crs coordinate reference system: integer with the EPSG code, or character with proj4string
#' @param precision numeric; see \link{st_as_binary}
#' @param check_ring_dir see \link{st_read}
#' @param dim character; if this function is called without valid geometries, this argument may carry the right dimension to set empty geometries
#' @return an object of class \code{sfc}, which is a classed list-column with simple feature geometries.
#'
#' @details A simple feature geometry list-column is a list of class
#' \code{c("stc_TYPE", "sfc")} which most often contains objects of identical type;
#' in case of a mix of types or an empty set, \code{TYPE} is set to the
#' superclass \code{GEOMETRY}.
#' @examples
#' pt1 = st_point(c(0,1))
#' pt2 = st_point(c(1,1))
#' (sfc = st_sfc(pt1, pt2))
#' d = st_sf(data.frame(a=1:2, geom=sfc))
#' @export
st_sfc = function(..., crs = NA_crs_, precision = 0.0, check_ring_dir = FALSE, dim) {
lst = list(...)
# if we have only one arg, which is already a list with sfg's, but NOT a geometrycollection:
# (this is the old form of calling st_sfc; it is way faster to call st_sfc(lst) if lst
# already contains a zillion sfg objects, than do.call(st_sfc, lst) ...
if (length(lst) == 1 && is.list(lst[[1]]) && !inherits(lst[[1]], "sfg")
&& (length(lst[[1]]) == 0 || inherits(lst[[1]][[1]], "sfg") || is.null(lst[[1]][[1]])))
lst = lst[[1]]
stopifnot(is.numeric(crs) || is.character(crs) || inherits(crs, "crs"))
# check for NULLs:
a = attributes(lst)
is_null = vapply(lst, function(x) is.null(x) || isTRUE(is.na(x)), NA)
lst = unclass(lst)
lst = lst[! is_null]
attributes(lst) = a
sfg_classes = vapply(lst, class, rep(NA_character_, 3))
cls = if (length(lst) == 0) # empty set: no geometries read
c("sfc_GEOMETRY", "sfc")
else {
# class: do we have a mix of geometry types?
single = if (!is.null(attr(lst, "single_type"))) # set by CPL_read_wkb:
attr(lst, "single_type")
else
length(unique(sfg_classes[2L,])) == 1L
attr(lst, "single_type") = NULL # clean up
if (single)
c(paste0("sfc_", sfg_classes[2L, 1L]), "sfc")
else
c("sfc_GEOMETRY", "sfc") # the mix
}
if (any(is_null)) {
if (missing(dim)) {
dim = if (length(lst) == 0) # we have no clue:
"XY"
else
sfg_classes[1L, 1L]
}
ret = vector("list", length(is_null))
ret[!is_null] = lst
ret[ is_null] = list(typed_empty(cls, nchar(dim), dim = dim))
attributes(ret) = attributes(lst)
lst = ret
sfg_classes = vapply(lst, class, rep(NA_character_, 3))
}
# set class:
class(lst) = cls
# set precision
if (! missing(precision) || is.null(attr(lst, "precision")))
attr(lst, "precision") = precision
# compute bbox, if not set:
bb = attr(lst, "bbox")
if (is.null(bb) || any(is.na(bb)))
attr(lst, "bbox") = compute_bbox(lst)
# compute z_range, if dims permit and not set
zr = attr(lst, "z_range")
if (is.null(zr) || any(is.na(zr))) {
u <- unique(sfg_classes[1L,])
if( "XYZM" %in% u ) {
attr(lst, "z_range") = compute_z_range(lst)
attr(lst, "m_range") = compute_m_range(lst)
} else if ( "XYZ" %in% u ) {
attr(lst, "z_range") = compute_z_range(lst)
} else if ("XYM" %in% u ) {
attr(lst, "m_range") = compute_m_range(lst)
}
}
# check ring directions:
if (check_ring_dir) # also GEOMETRYCOLLECTION?
lst = check_ring_dir(lst)
# get & set crs:
if (is.na(crs) && !is.null(attr(lst, "crs")))
crs = attr(lst, "crs")
st_crs(lst) = crs
# set classes attr in case of GEOMETRY
if (inherits(lst, "sfc_GEOMETRY")) # recompute, as NULL's may have been substituted:
attr(lst, "classes") = vapply(lst, class, rep(NA_character_, 3))[2L,]
# set n_empty, check XY* is uniform:
if (is.null(attr(lst, "n_empty")) || any(is_null)) { # n_empty is set by CPL_read_wkb:
attr(lst, "n_empty") = sum(vapply(lst, sfg_is_empty, TRUE))
if (length(u <- unique(sfg_classes[1L,])) > 1)
stop(paste("found multiple dimensions:", paste(u, collapse = " ")))
}
lst
}
sfg_is_empty = function(x) {
switch(class(x)[2],
POINT = any(!is.finite(x)),
MULTIPOINT = , LINESTRING = , CIRCULARSTRING = , CURVE = nrow(x) == 0,
length(x) == 0
)
}
#' @export
"[.sfc" = function(x, i, j, ..., op = st_intersects) {
if (!missing(i) && (inherits(i, "sf") || inherits(i, "sfc") || inherits(i, "sfg")))
i = lengths(op(x, i, ...)) != 0
st_sfc(unclass(x)[i], crs = st_crs(x), precision = st_precision(x),
dim = if(length(x)) class(x[[1]])[1] else "XY")
}
#' @export
#"[<-.sfc" = function (x, i, j, value) {
"[<-.sfc" = function (x, i, value) {
if (is.null(value) || inherits(value, "sfg"))
value = list(value)
x = unclass(x) # becomes a list, but keeps attributes
ret = st_sfc(NextMethod())
structure(ret, n_empty = sum(vapply(ret, sfg_is_empty, TRUE)))
}
#' @export
c.sfc = function(..., recursive = FALSE) {
lst = list(...)
classes = sapply(lst, function(x) class(x)[1])
le = lengths(lst)
if (any(le > 0))
classes = classes[le > 0] # removes the empty set GEOMETRY objects
ucls = unique(classes)
cls = if (length(ucls) > 1) # a mix:
c("sfc_GEOMETRY", "sfc")
else
c(ucls, "sfc")
ret = unlist(lapply(lst, unclass), recursive = FALSE)
attributes(ret) = attributes(lst[[1]]) # crs
class(ret) = cls
attr(ret, "bbox") = compute_bbox(ret) # dispatch on class
attr(ret, "n_empty") = sum(sapply(lst, attr, which = "n_empty"))
if (inherits(ret, "sfc_GEOMETRY"))
attr(ret, "classes") = vapply(ret, class, rep("", 3))[2L,]
ret
}
#' @export
print.sfc = function(x, ..., n = 5L, what = "Geometry set for", append = "") {
sep = if (length(x) != 1) "s" else ""
cls = substr(class(x)[1], 5, nchar(class(x)[1]))
cat(paste0(what, " ", length(x), " feature", sep, " ", append))
if (! is.null(attr(x, "n_empty"))) {
ne = attr(x, "n_empty")
if (ne > 0)
cat(paste0(" (with ", ne, ifelse(ne > 1, " geometries ", " geometry "), "empty)"))
}
cat("\n")
if (length(x)) {
cat(paste0("geometry type: ", cls, "\n"))
cat(paste0("dimension: ", class(x[[1]])[1], "\n"))
}
cat(paste0("bbox: "))
bb = signif(attr(x, "bbox"), options("digits")$digits)
cat(paste(paste(names(bb), bb[], sep = ": "), collapse = " "))
cat("\n")
if( !is.null( attr(x, "z_range"))) {
cat(paste0("z_range: "))
zb = signif(attr(x, "z_range"), options("digits")$digits)
cat(paste(paste(names(zb), zb[], sep = ": "), collapse = " "))
cat("\n")
}
if( !is.null( attr(x, "m_range"))) {
cat(paste0("m_range: "))
mb = signif(attr(x, "m_range"), options("digits")$digits)
cat(paste(paste(names(mb), mb[], sep = ": "), collapse = " "))
cat("\n")
}
# attributes: epsg, proj4string, precision
crs = st_crs(x)
if (is.na(crs))
cat(paste0("CRS: NA\n"))
else {
p = crs_parameters(crs)
if (p$Name == "unknown") {
if (!is.character(crs$input) || is.na(crs$input))
cat(paste0("proj4string: ", crs$proj4string, "\n"))
else
cat(paste0("CRS: ", crs$input, "\n"))
} else if (p$IsGeographic)
cat(paste0("geographic CRS: ", p$Name, "\n"))
else
cat(paste0("projected CRS: ", p$Name, "\n"))
# if (!is.na(crs$epsg))
# cat(paste0("epsg (SRID): ", crs$epsg, "\n"))
}
if (attr(x, "precision") != 0.0) {
cat(paste0("precision: "))
if (attr(x, "precision") < 0.0)
cat("float (single precision)\n")
else
cat(paste(attr(x, "precision"), "\n"))
} # else cat("double (default; no precision model)\n")
if (length(x) > n && n > 0)
cat(paste0("First ", n, " geometries:\n"))
for (i in seq_len(min(n, length(x))))
if (inherits(x[[i]], "sfg"))
print(x[[i]], width = 50)
else
print(x[[i]])
invisible(x)
}
#' Summarize simple feature column
#'
#' Summarize simple feature column
#' @param object object of class \code{sfc}
#' @param ... ignored
#' @param maxsum maximum number of classes to summarize the simple feature column to
#' @param maxp4s maximum number of characters to print from the PROJ string
#' @method summary sfc
#' @export
summary.sfc = function(object, ..., maxsum = 7L, maxp4s = 10L) {
u = factor(vapply(object, function(x) WKT_name(x, FALSE), ""))
epsg = paste0("epsg:", st_crs(object)$epsg)
levels(u) = c(levels(u), epsg)
p4s = attr(object, "crs")$proj4string
if (!is.na(p4s)) {
if (nchar(p4s) > maxp4s)
p4s = paste0(substr(p4s, 1L, maxp4s), "...")
levels(u) = c(levels(u), p4s)
}
summary(u, maxsum = maxsum, ...)
}
#' @export
as.data.frame.sfc = function(x, ...) {
ret = data.frame(row.names = seq_along(x))
ret$geometry = x
ret
}
#' @name st_geometry
#' @export
st_geometry.sfc = function(obj, ...) obj
#' Return geometry type of an object
#'
#' Return geometry type of an object, as a factor
#' @param x object of class \link{sf} or \link{sfc}
#' @param by_geometry logical; if \code{TRUE}, return geometry type of each geometry,
#' else return geometry type of the set
#' @return a factor with the geometry type of each simple feature geometry
#' in \code{x}, or that of the whole set
#' @export
st_geometry_type = function(x, by_geometry = TRUE) {
x = st_geometry(x)
f = if (by_geometry)
vapply(x, function(y) class(y)[2], "")
else
substring(class(x)[1], 5)
factor(f, levels =
c("GEOMETRY",
"POINT",
"LINESTRING",
"POLYGON",
"MULTIPOINT",
"MULTILINESTRING",
"MULTIPOLYGON",
"GEOMETRYCOLLECTION",
"CIRCULARSTRING",
"COMPOUNDCURVE",
"CURVEPOLYGON",
"MULTICURVE",
"MULTISURFACE",
"CURVE",
"SURFACE",
"POLYHEDRALSURFACE",
"TIN",
"TRIANGLE"))
}
#' Drop or add Z and/or M dimensions from feature geometries
#'
#' Drop Z and/or M dimensions from feature geometries, resetting classes appropriately
#' @param x object of class \code{sfg}, \code{sfc} or \code{sf}
#' @param ... ignored
#' @param drop logical; drop, or (FALSE) add?
#' @param what character which dimensions to drop or add
#' @details Only combinations \code{drop=TRUE}, \code{what = "ZM"}, and \code{drop=FALSE}, \code{what="Z"} are supported so far. In case \code{add=TRUE}, \code{x} should have \code{XY} geometry, and zero values are added for \code{Z}.
#' @examples
#' st_zm(st_linestring(matrix(1:32,8)))
#' x = st_sfc(st_linestring(matrix(1:32,8)), st_linestring(matrix(1:8,2)))
#' st_zm(x)
#' a = st_sf(a = 1:2, geom=x)
#' st_zm(a)
#' @export
st_zm <- function(x, ..., drop = TRUE, what = "ZM") UseMethod("st_zm")
#' @export
st_zm.sf <- function(x, ..., drop = TRUE, what = "ZM") {
st_geometry(x) = st_zm(st_geometry(x), drop = drop, what = what)
x
}
#' @export
st_zm.sfc <- function(x, ..., drop = TRUE, what = "ZM") {
st_sfc(lapply(x, st_zm, drop = drop, what = what), crs = st_crs(x))
}
#' @export
st_zm.sfg <- function(x, ..., drop = TRUE, what = "ZM") {
if (drop && what == "ZM") {
ret = if (is.list(x))
lapply(x, st_zm, drop = drop, what = what)
else if (is.matrix(x))
x[, 1:2, drop = FALSE]
else
x[1:2]
structure(ret, class = c("XY", class(x)[2:3]))
} else if (!drop && what == "Z") {
if (class(x)[1] != "XY")
stop("adding Z only supported for XY geometries")
ret = if (is.list(x))
lapply(x, st_zm, drop = drop, what = what)
else if (is.matrix(x))
cbind(unclass(x), 0)
else
c(unclass(x), 0)
structure(ret, class = c("XYZ", class(x)[2:3]))
} else
stop("this combination of `x', `drop' and `what' is not implemented")
}
#' @export
st_zm.list <- function(x, ..., drop = TRUE, what = "ZM")
lapply(x, st_zm, drop = drop, what = what)
#' @export
st_zm.matrix <- function(x, ..., drop = TRUE, what = "ZM") {
if (drop && what == "ZM") {
x[,1:2]
} else if (!drop && what == "Z") {
cbind(unclass(x), 0)
} else
stop("this combination of drop and what is not implemented")
}
#' Get precision
#'
#' @param x object of class \code{sfc} or \code{sf}
#' @export
st_precision <- function(x) {
UseMethod("st_precision")
}
#' @export
st_precision.sf <- function(x) {
x <- st_geometry(x)
st_precision(x)
}
#' @export
st_precision.sfc <- function(x) {
attr(x, "precision")
}
#' Set precision
#'
#' @name st_precision
#' @param precision numeric, or object of class \code{units} with distance units (but see details); see \link{st_as_binary} for how to do this.
#' @details If \code{precision} is a \code{units} object, the object on which we set precision must have a coordinate reference system with compatible distance units.
#'
#' Setting a \code{precision} has no direct effect on coordinates of geometries, but merely set an attribute tag to an \code{sfc} object. The effect takes place in \link{st_as_binary} or, more precise, in the C++ function \code{CPL_write_wkb}, where simple feature geometries are being serialized to well-known-binary (WKB). This happens always when routines are called in GEOS library (geometrical operations or predicates), for writing geometries using \link{st_write} or \link{write_sf}, \code{st_make_valid} in package \code{lwgeom}; also \link{aggregate} and \link{summarise} by default union geometries, which calls a GEOS library function. Routines in these libraries receive rounded coordinates, and possibly return results based on them. \link{st_as_binary} contains an example of a roundtrip of \code{sfc} geometries through WKB, in order to see the rounding happening to R data.
#'
#' The reason to support precision is that geometrical operations in GEOS or liblwgeom may work better at reduced precision. For writing data from R to external resources it is harder to think of a good reason to limiting precision.
#'
#' @seealso \link{st_as_binary} for an explanation of what setting precision does, and the examples therein.
#' @examples
#' x <- st_sfc(st_point(c(pi, pi)))
#' st_precision(x)
#' st_precision(x) <- 0.01
#' st_precision(x)
#' @export
st_set_precision <- function(x, precision) {
UseMethod("st_set_precision")
}
#' @export
st_set_precision.sfc <- function(x, precision) {
if (length(precision) != 1) {
stop("Precision applies to all dimensions and must be of length 1.", call. = FALSE)
}
if (inherits(precision, "units")) {
u = st_crs(x, parameters=TRUE)$ud_unit
if (is.null(u) || !inherits(u, "units"))
stop("cannot use precision expressed as units when target object has no units (CRS) set")
units(precision) = 1/u # convert
precision = as.numeric(precision)
}
if (is.na(precision) || !is.numeric(precision)) {
stop("Precision must be numeric", call. = FALSE)
}
structure(x, precision = precision)
}
#' @export
st_set_precision.sf <- function(x, precision) {
st_geometry(x) <- st_set_precision(st_geometry(x), precision)
return(x)
}
#' @name st_precision
#' @param value precision value
#' @export
"st_precision<-" <- function(x, value) {
st_set_precision(x, value)
}
typed_empty = function(cls, ncol = 2, dim = "XY") {
switch(cls[1],
sfc_POINT = st_point(rep(NA_real_, ncol), dim = dim),
sfc_MULTIPOINT = st_multipoint(matrix(numeric(0), ncol = ncol), dim = dim),
sfc_LINESTRING = st_linestring(matrix(numeric(0), ncol = ncol), dim = dim),
sfc_MULTILINESTRING = st_multilinestring(dim = dim),
sfc_POLYGON = st_polygon(dim = dim),
sfc_MULTIPOLYGON = st_multipolygon(dim = dim),
st_geometrycollection(dims = dim))
}
#' retrieve coordinates in matrix form
#'
#' retrieve coordinates in matrix form
#' @param x object of class sf, sfc or sfg
#' @param ... ignored
#' @return matrix with coordinates (X, Y, possibly Z and/or M) in rows, possibly followed by integer indicators \code{L1},...,\code{L3} that point out to which structure the coordinate belongs; for \code{POINT} this is absent (each coordinate is a feature), for \code{LINESTRING} \code{L1} refers to the feature, for \code{MULTIPOLYGON} \code{L1} refers to the main ring or holes, \code{L2} to the ring id in the \code{MULTIPOLYGON}, and \code{L3} to the simple feature.
#' @export
st_coordinates = function(x, ...) UseMethod("st_coordinates")
#' @export
st_coordinates.sf = function(x, ...) st_coordinates(st_geometry(x))
#' @export
st_coordinates.sfg = function(x, ...) st_coordinates(st_geometry(x))
#' @export
st_coordinates.sfc = function(x, ...) {
if (length(x) == 0)
return(matrix(nrow = 0, ncol = 2))
ret = switch(class(x)[1],
sfc_POINT = matrix(unlist(x, use.names = FALSE), nrow = length(x), byrow = TRUE,
dimnames = list(seq_along(x))),
sfc_MULTIPOINT = ,
sfc_LINESTRING = coord_2(x),
sfc_MULTILINESTRING = ,
sfc_POLYGON = coord_3(x),
sfc_MULTIPOLYGON = coord_4(x),
stop(paste("not implemented for objects of class", class(x)[1]))
)
Dims = class(x[[1]])[1]
ncd = nchar(Dims)
colnames(ret)[1:ncd] = vapply(seq_len(ncd), function(i) substr(Dims, i, i), "")
ret
}
coord_2 = function(x) { # x is a list with matrices
cbind(do.call(rbind, x), L1 = rep(seq_along(x), times = vapply(x, nrow, 0L)))
}
coord_3 = function(x) { # x is a list of lists with matrices
x = lapply(x, coord_2)
cbind(do.call(rbind, x), L2 = rep(seq_along(x), times = vapply(x, nrow, 0L)))
}
coord_4 = function(x) { # x is a list of lists of lists with matrices
x = lapply(x, coord_3)
cbind(do.call(rbind, x), L3 = rep(seq_along(x), times = vapply(x, nrow, 0L)))
}
#' @export
rep.sfc = function(x, ...) {
st_sfc(NextMethod(), crs = st_crs(x))
}
check_ring_dir = function(x) {
check_polygon = function(pol) {
sa = sapply(pol, CPL_signed_area)
revert = if (length(sa))
c(sa[1] < 0, sa[-1] > 0)
else
logical(0)
pol[revert] = lapply(pol[revert], function(m) m[nrow(m):1,])
pol
}
cls = if (inherits(x, "sfg"))
class(x)[2]
else
class(x)[1]
ret = switch(cls,
POLYGON = check_polygon(x),
MULTIPOLYGON = ,
sfc_POLYGON = lapply(x, check_polygon),
sfc_MULTIPOLYGON = lapply(x, function(y) structure(lapply(y, check_polygon), class = class(y))),
stop(paste("check_ring_dir: not supported for class", class(x)[1]))
)
attributes(ret) = attributes(x)
ret
}
#' @name st_as_sfc
#' @export
st_as_sfc.list = function(x, ..., crs = NA_crs_) {
if (length(x) == 0)
return(st_sfc(crs = crs))
if (is.raw(x[[1]]))
st_as_sfc.WKB(as_wkb(x), ..., crs = crs)
else if (inherits(x[[1]], "sfg"))
st_sfc(x, crs = crs)
else if (is.character(x[[1]])) { # hex wkb or wkt:
ch12 = substr(x[[1]], 1, 2)
if (ch12 == "0x" || ch12 == "00" || ch12 == "01") # hex wkb
st_as_sfc.WKB(as_wkb(x), ..., crs = crs)
else
st_as_sfc(unlist(x), ..., crs = crs) # wkt
} else
stop(paste("st_as_sfc.list: don't know what to do with list with elements of class", class(x[[1]])))
}
#' @name st_as_sfc
#' @export
st_as_sfc.blob = function(x, ...) {
st_as_sfc.list(x, ...)
}
#' @name st_as_sfc
#' @export
st_as_sfc.bbox = function(x, ...) {
box = st_polygon(list(matrix(x[c(1, 2, 3, 2, 3, 4, 1, 4, 1, 2)], ncol = 2, byrow = TRUE)))
st_sfc(box, crs = st_crs(x))
}
|