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
|
# convert character string, as typically PostgreSQL returned blobs, to raw vector;
# skips a leading "0x", as this is created by PostGIS when using ST_asBinary()
#
# most wkb read/write stuff was modified & extended from Ian Cook's wkb package,
# https://cran.r-project.org/web/packages/wkb/index.html
#
hex_to_raw = function(y) {
stopifnot((nchar(y) %% 2) == 0)
if (substr(y, 1, 2) == "0x")
y = substr(y, 3, nchar(y))
as.raw(as.numeric(paste0("0x", vapply(seq_len(nchar(y)/2),
function(x) substr(y, (x-1)*2+1, x*2), "")))) # SLOW, hence the Rcpp implementation
}
skip0x = function(x) {
if (is.na(x))
"010700000000000000" # empty GeometryCollection, st_as_binary(st_geometrycollection())
else if (substr(x, 1, 2) == "0x")
substr(x, 3, nchar(x))
else
x
}
#' @name st_as_sfc
#' @param EWKB logical; if TRUE, parse as EWKB (extended WKB; PostGIS: ST_AsEWKB), otherwise as ISO WKB (PostGIS: ST_AsBinary)
#' @param spatialite logical; if \code{TRUE}, WKB is assumed to be in the spatialite dialect, see \url{https://www.gaia-gis.it/gaia-sins/BLOB-Geometry.html}; this is only supported in native endian-ness (i.e., files written on system with the same endian-ness as that on which it is being read).
#' @param pureR logical; if TRUE, use only R code, if FALSE, use compiled (C++) code; use TRUE when the endian-ness of the binary differs from the host machine (\code{.Platform$endian}).
#' @details When converting from WKB, the object \code{x} is either a character vector such as typically obtained from PostGIS (either with leading "0x" or without), or a list with raw vectors representing the features in binary (raw) form.
#' @examples
#' wkb = structure(list("01010000204071000000000000801A064100000000AC5C1441"), class = "WKB")
#' st_as_sfc(wkb, EWKB = TRUE)
#' wkb = structure(list("0x01010000204071000000000000801A064100000000AC5C1441"), class = "WKB")
#' st_as_sfc(wkb, EWKB = TRUE)
#' @export
st_as_sfc.WKB = function(x, ..., EWKB = FALSE, spatialite = FALSE, pureR = FALSE, crs = NA_crs_) {
if (EWKB && spatialite)
stop("arguments EWKB and spatialite cannot both be TRUE")
if (spatialite && pureR)
stop("pureR implementation for spatialite reading is not available")
if (all(vapply(x, is.character, TRUE))) {
x <- if (pureR)
structure(lapply(x, hex_to_raw), class = "WKB")
else
structure(CPL_hex_to_raw(vapply(x, skip0x, USE.NAMES = FALSE, "")), class = "WKB")
} else # direct call with raw:
stopifnot(inherits(x, "WKB") && all(vapply(x, is.raw, TRUE))) # WKB as raw
if (any(lengths(x) == 0))
stop("cannot read WKB object from zero-length raw vector")
ret = if (pureR)
R_read_wkb(x, readWKB, EWKB = EWKB)
else
CPL_read_wkb(x, EWKB, spatialite)
if (is.na(crs) && (EWKB || spatialite) && !is.null(attr(ret, "srid")) && attr(ret, "srid") != 0)
crs = attr(ret, "srid")
if (! is.na(st_crs(crs))) {
attr(ret, "srid") = NULL # remove
st_sfc(ret, crs = crs)
} else
st_sfc(ret) # leave attr srid in place: PostGIS srid that is not an EPSG code
}
#' @export
#' @examples
#' st_as_sfc(st_as_binary(st_sfc(st_point(0:1)))[[1]], crs = 4326)
#' @name st_as_sfc
st_as_sfc.raw = function(x, ...) {
st_as_sfc(structure(list(x), class = "WKB"), ...)
}
R_read_wkb = function(x, readWKB, EWKB = EWKB) {
ret = lapply(x, readWKB, EWKB = EWKB)
srid = attr(ret[[1]], "srid")
ret = lapply(ret, function(x) { attr(x, "srid") = NULL; x })
attr(ret, "srid") = srid
ret
}
sf.tp = toupper(c(
# "Geometry", # 0
"Point", # 1
"LineString", # 2
"Polygon", # 3
"MultiPoint", # 4
"MultiLineString", # 5
"MultiPolygon", # 6
"GeometryCollection", # 7
"CircularString", # 8 x
"CompoundCurve", # 9 x
"CurvePolygon", # 10 x
"MultiCurve", # 11 x
"MultiSurface", # 12 x
"Curve", # 13 x *
"Surface", # 14 x *
"PolyhedralSurface", # 15
"TIN", # 16
"Triangle" # 17
)) # "Geometry" = 0, should not be matched, is a superclass only
# x: not described in ISO document
# *: GDAL support see https://trac.osgeo.org/gdal/ticket/6401
readWKB = function(x, EWKB = FALSE) {
stopifnot(inherits(x, "raw"))
rc <- rawConnection(x, "r")
on.exit(close(rc))
seek(rc, 0L)
# read data:
readData(rc, EWKB = EWKB)
}
parseTypeEWKB = function(wkbType, endian) {
# following the OGC doc, 3001 is POINT with ZM; turns out, PostGIS does sth else -
# read WKB, as well as EWKB; this post is more inormative of what is going on:
# https://lists.osgeo.org/pipermail/postgis-devel/2004-December/000710.html
# (without SRID, Z, M and ZM this all doesn't matter)
# comparison ISO WKB and EWKB:
# https://lists.osgeo.org/pipermail/postgis-devel/2004-December/000695.html
stopifnot(length(wkbType) == 4)
if (endian == "little") {
sf_type = as.numeric(wkbType[1])
info = as.raw(as.integer(wkbType[4]) %/% 2^4)
} else {
sf_type = as.numeric(wkbType[4])
info = as.raw(as.integer(wkbType[1]) %/% 2^4)
}
tp = sf.tp[sf_type]
stopifnot(!is.na(tp))
has_srid = as.logical(info & as.raw(2)) # 2-bit is "on"?
zm = if ((info & as.raw(12)) == as.raw(12))
"XYZM"
else if (info & as.raw(8))
"XYZ"
else if (info & as.raw(4))
"XYM"
else if (info == as.raw(0) || info == as.raw(2))
"XY"
else
stop(paste("unknown value for info:", info))
list(dims = nchar(zm), zm = zm, tp = tp, has_srid = has_srid)
}
parseTypeISO = function(wkbType) {
tp = sf.tp[wkbType %% 1000]
stopifnot(!is.na(tp))
dd = wkbType %/% 1000
zm = if (dd == 0)
"XY"
else if (dd == 1)
"XYZ"
else if (dd == 2)
"XYM"
else if (dd == 3)
"XYZM"
else
stop(paste("unknown value for wkbType:", wkbType))
list(dims = nchar(zm), zm = zm, tp = tp, has_srid = FALSE)
}
readData = function(rc, EWKB = FALSE) {
# read byte order:
byteOrder <- readBin(rc, what = "raw", size = 1L)
stopifnot(byteOrder %in% c(as.raw(0L), as.raw(1L)))
endian = ifelse(byteOrder == as.raw(1L), "little", "big")
# read wkbType:
srid = NA_integer_
if (EWKB) {
wkbType <- readBin(rc, what = "raw", n = 4L, size = 1L, endian = endian)
pt <- parseTypeEWKB(wkbType, endian)
if (pt$has_srid)
srid <- readBin(rc, what = "integer", size = 4L, endian = endian)
} else {
wkbType <- readBin(rc, what = "integer", n = 1L, size = 4L, endian = endian)
pt <- parseTypeISO(wkbType)
}
# read data part:
ret = switch(pt$tp,
POINT = readPoint(rc, pt$dims, endian),
CURVE = ,
CIRCULARSTRING = ,
LINESTRING = readMatrix(rc, pt$dims, endian),
SURFACE = ,
POLYGON = ,
TRIANGLE = readMatrixList(rc, pt$dims, endian),
MULTIPOINT = readMPoints(rc, pt$dims, endian, EWKB),
MULTILINESTRING = ,
MULTICURVE = ,
MULTIPOLYGON = ,
MULTISURFACE = ,
POLYHEDRALSURFACE = ,
TIN = lapply(readGC(rc, pt$dims, endian, EWKB), unclass),
GEOMETRYCOLLECTION = readGC(rc, pt$dims, endian, EWKB),
CURVEPOLYGON = readGC(rc, pt$dims, endian, EWKB),
stop(paste("type", pt$tp, "unsupported")))
class(ret) <- c(pt$zm, pt$tp, "sfg")
if (!is.na(srid))
attr(ret, "srid") <- srid
ret
}
readPoint = function(rc, dims, endian) {
readBin(rc, what = "double", n = as.integer(dims), size = 8L, endian = endian)
}
readMPoints = function(rc, dims, endian, EWKB) {
npts = readBin(rc, what = "integer", n = 1L, size = 4L, endian = endian)
do.call(rbind, lapply(seq_len(npts), function(x) readData(rc, EWKB)))
}
readMatrix = function(rc, dims, endian) {
npts = readBin(rc, what = "integer", n = 1L, size = 4L, endian = endian)
m = readBin(rc, what = "double", n = as.integer(npts * dims), size = 8L, endian = endian)
t(matrix(m, nrow = dims)) # x1 y1, x2 y2 etc -> t()
}
readMatrixList = function(rc, dims, endian) {
nmtrx = readBin(rc, what = "integer", n = 1L, size = 4L, endian = endian)
lapply(seq_len(nmtrx), function(x) readMatrix(rc, dims, endian))
}
#readMatrixListList = function(rc, dims, endian) {
# nmtrxl = readBin(rc, what = "integer", n = 1L, size = 4L, endian = endian)
# lapply(seq_len(nmtrxl), function(x) readMatrixList(rc, dims, endian))
#}
readGC = function(rc, dims, endian, EWKB) {
ngc = readBin(rc, what = "integer", n = 1L, size = 4L, endian = endian)
lapply(seq_len(ngc), function(x) readData(rc, EWKB))
}
#' Convert sfc object to an WKB object
#'
#' Convert sfc object to an WKB object
#' @param x object to convert
#' @param ... ignored
#' @name st_as_binary
#' @export
st_as_binary = function(x, ...) UseMethod("st_as_binary")
#' @name st_as_binary
#' @param endian character; either "big" or "little"; default: use that of platform
#' @param EWKB logical; use EWKB (PostGIS), or (default) ISO-WKB?
#' @param pureR logical; use pure R solution, or C++?
#' @param precision numeric; if zero, do not modify; to reduce precision: negative values convert to float (4-byte real); positive values convert to round(x*precision)/precision. See details.
#' @param hex logical; return as (unclassed) hexadecimal encoded character vector?
#' @param srid integer; override srid (can be used when the srid is unavailable locally).
#' @details \code{st_as_binary} is called on sfc objects on their way to the GDAL or GEOS libraries, and hence does rounding (if requested) on the fly before e.g. computing spatial predicates like \link{st_intersects}. The examples show a round-trip of an \code{sfc} to and from binary.
#'
#' For the precision model used, see also \url{https://locationtech.github.io/jts/javadoc/org/locationtech/jts/geom/PrecisionModel.html}. There, it is written that: ``... to specify 3 decimal places of precision, use a scale factor of 1000. To specify -3 decimal places of precision (i.e. rounding to the nearest 1000), use a scale factor of 0.001.''. Note that ALL coordinates, so also Z or M values (if present) are affected.
#' @export
#' @examples
#' # examples of setting precision:
#' st_point(c(1/3, 1/6)) %>% st_sfc(precision = 1000) %>% st_as_binary %>% st_as_sfc
#' st_point(c(1/3, 1/6)) %>% st_sfc(precision = 100) %>% st_as_binary %>% st_as_sfc
#' st_point(1e6 * c(1/3, 1/6)) %>% st_sfc(precision = 0.01) %>% st_as_binary %>% st_as_sfc
#' st_point(1e6 * c(1/3, 1/6)) %>% st_sfc(precision = 0.001) %>% st_as_binary %>% st_as_sfc
st_as_binary.sfc = function(x, ..., EWKB = FALSE, endian = .Platform$endian, pureR = FALSE,
precision = attr(x, "precision"), hex = FALSE) {
stopifnot(endian %in% c("big", "little"))
if (pureR && precision != 0.0)
stop("for non-zero precision values, use pureR = FALSE")
ret = if (pureR)
structure(lapply(x, st_as_binary.sfg, EWKB = EWKB, pureR = pureR, endian = endian), class = "WKB")
else {
stopifnot(endian == .Platform$endian)
attr(x, "precision") = precision
structure(CPL_write_wkb(x, EWKB), class = "WKB")
}
if (hex)
vapply(ret, CPL_raw_to_hex, "")
else
ret
}
createType = function(x, endian, EWKB = FALSE) {
dims = x[1] # "XY", "XYZ", "XYM", or "XYZM"
cl = x[2]
m = match(cl, sf.tp)
if (is.na(m))
stop(paste("Class", cl, "not matched"))
# return:
if (! EWKB) # ISO: add 1000s
as.integer(m + switch(dims, "XYZ" = 1000, "XYM" = 2000, "XYZM" = 3000, 0))
else { # EWKB: set higher bits
ret = raw(4)
ret[1] = as.raw(m) # set up little-endian
ret[4] = as.raw(switch(dims, "XYZ" = 0x80, "XYM" = 0x40, "XYZM" = 0xC0, 0))
if (endian == "big")
rev(ret)
else
ret
}
}
#' @name st_as_binary
#' @export
st_as_binary.sfg = function(x, ..., endian = .Platform$endian, EWKB = FALSE, pureR = FALSE,
hex = FALSE, srid = 0) {
# if pureR, it's done here, if not, it's done in st_as_binary.sfc
stopifnot(endian %in% c("big", "little"))
if (! pureR)
st_as_binary.sfc(st_sfc(x), endian == endian, EWKB = EWKB, pureR = pureR, hex = hex, srid = srid, ...)[[1]]
else {
rc <- rawConnection(raw(0), "r+")
on.exit(close(rc))
writeData(x, rc, endian, EWKB)
r = rawConnectionValue(rc)
if (hex)
r = rawToHex(r)
r
}
}
#' Convert raw vector(s) into hexadecimal character string(s)
#'
#' Convert raw vector(s) into hexadecimal character string(s)
#' @param x raw vector, or list with raw vectors
#' @export
rawToHex = function(x) {
if (is.raw(x))
CPL_raw_to_hex(x)
else if (is.list(x) && all(vapply(x, is.raw, TRUE)))
vapply(x, function(rw) CPL_raw_to_hex(rw), "")
else
stop(paste("not implemented for objects of class", class(x)))
}
writeData = function(x, rc, endian, EWKB = FALSE) {
if (endian == "big")
writeBin(as.raw(0L), rc)
else
writeBin(as.raw(1L), rc)
if (EWKB)
writeBin(createType(class(x), endian, TRUE), rc, size = 1L, endian = endian)
else
writeBin(createType(class(x)), rc, size = 4L, endian = endian)
# TODO (?): write SRID in case of EWKB?
# write out x:
switch(class(x)[2],
POINT = writeBin(as.vector(as.double(x)), rc, size = 8L, endian = endian),
LINESTRING = writeMatrix(x, rc, endian),
POLYGON = ,
TRIANGLE = writeMatrixList(x, rc, endian),
MULTIPOINT = writeMPoints(x, rc, endian, EWKB),
POLYHEDRALSURFACE = ,
TIN = ,
MULTILINESTRING = ,
MULTIPOLYGON = writeMulti(x, rc, endian, EWKB),
GEOMETRYCOLLECTION = writeGC(x, rc, endian, EWKB),
stop(paste("unimplemented class to write:", class(x)[2]))
)
}
writeMulti = function(x, rc, endian, EWKB) {
unMulti = if (inherits(x, "MULTILINESTRING"))
st_linestring
else # MULTIPOLYGON, POLYHEDRALSURFACE, TIN:
st_polygon
writeBin(as.integer(length(x)), rc, size = 4L, endian = endian)
lapply(lapply(x, unMulti, class(x)[1]), writeData, rc = rc, endian = endian, EWKB = EWKB)
}
writeGC = function(x, rc, endian, EWKB) {
writeBin(as.integer(length(x)), rc, size = 4L, endian = endian)
lapply(x, writeData, rc = rc, endian = endian, EWKB = EWKB)
}
writeMatrix = function(x, rc, endian) {
writeBin(as.integer(nrow(x)), rc, size = 4L, endian = endian)
writeBin(as.double(as.vector(t(x))), rc, size = 8L, endian = endian)
}
writeMatrixList = function(x, rc, endian) {
writeBin(as.integer(length(x)), rc, size = 4L, endian = endian)
lapply(x, function(y) writeMatrix(y, rc, endian))
}
writeMPoints = function(x, rc, endian, EWKB) {
writeBin(as.integer(nrow(x)), rc, size = 4L, endian = endian)
if (nrow(x))
apply(x, 1, function(y) writeData(st_point(y, class(x)[1]), rc, endian, EWKB))
}
|