Searched +refs:st_as_sfc +refs:raw (Results 1 – 8 of 8) sorted by relevance
/dports/math/R-cran-sf/sf/tests/testthat/ |
H A D | test_wkb.R | 5 g = st_as_sfc(wkb, EWKB = TRUE)[[1]] 9 g = st_as_sfc(wkb, EWKB = TRUE)[[1]] 13 g = st_as_sfc(wkb, EWKB = TRUE)[[1]] 37 expect_identical(st_as_sfc(x, EWKB = TRUE), st_as_sfc(y, EWKB = TRUE)) 39 expect_identical(st_as_sfc(x, EWKB = TRUE), st_as_sfc(y, EWKB = TRUE, pureR = TRUE)) 54 raw = st_as_binary(st_point(c(26e5, 12e5))) globalVar 56 list = list(raw) 57 blob = blob::blob(raw) 60 expect_identical(st_as_sfc(raw, crs = 2056), st_as_sfc(wkb, crs = 2056)) 61 expect_identical(st_as_sfc(list, crs = 2056), st_as_sfc(wkb, crs = 2056)) [all …]
|
/dports/math/R-cran-sf/sf/man/ |
H A D | st_as_sfc.Rd | 4 \name{st_as_sfc} 5 \alias{st_as_sfc} 7 \alias{st_as_sfc.list} 8 \alias{st_as_sfc.blob} 9 \alias{st_as_sfc.bbox} 10 \alias{st_as_sfc.WKB} 11 \alias{st_as_sfc.raw} 19 \alias{st_as_sfc.map} 47 \method{st_as_sfc}{raw}(x, ...) 53 st_as_sfc(x, ...) [all …]
|
/dports/math/R-cran-sf/sf/demo/ |
H A D | bm_wkb.R | 5 con = rawConnection(raw(0), "w") 17 con = rawConnection(raw(0), "w") 30 system.time(sf::st_as_sfc(mls, pureR = TRUE)) 31 system.time(sf::st_as_sfc(mls)) 34 system.time(sf::st_as_sfc(ls1, pureR = TRUE)) 35 system.time(sf::st_as_sfc(ls1)) 38 system.time(sf::st_as_sfc(ls2, pureR = TRUE)) 39 system.time(sf::st_as_sfc(ls2))
|
/dports/math/R-cran-sf/sf/ |
H A D | NAMESPACE | 114 S3method(st_as_sfc,WKB) 115 S3method(st_as_sfc,bbox) 116 S3method(st_as_sfc,blob) 119 S3method(st_as_sfc,factor) 120 S3method(st_as_sfc,list) 121 S3method(st_as_sfc,map) 122 S3method(st_as_sfc,owin) 124 S3method(st_as_sfc,psp) 125 S3method(st_as_sfc,raw) 127 S3method(st_as_sfc,tess) [all …]
|
H A D | NEWS.md | 480 * add `st_as_sfc.raw` method 530 * `st_as_sfc` can read EWKT; #530 658 * add `st_as_sfc` method for `bbox`, returning the bbox polygon; #377 672 * support RSQLite 2.0 by providing an `st_as_sfc` method for list columns of class `blob`
|
/dports/math/R-cran-sf/sf/vignettes/ |
H A D | sf2.Rmd | 279 We can convert back from WKT by using `st_as_sfc`: 282 st_as_sfc(str) 296 either a list with raw vectors, or a single raw vector. These 303 Converting back to `sf` uses `st_as_sfc`: 307 st_as_sfc(x) 313 simple feature objects or geometries by `st_as_sf` and `st_as_sfc`, 318 methods(st_as_sfc)
|
/dports/math/R-cran-sf/sf/inst/doc/ |
H A D | sf2.Rmd | 279 We can convert back from WKT by using `st_as_sfc`: 282 st_as_sfc(str) 296 either a list with raw vectors, or a single raw vector. These 303 Converting back to `sf` uses `st_as_sfc`: 307 st_as_sfc(x) 313 simple feature objects or geometries by `st_as_sf` and `st_as_sfc`, 318 methods(st_as_sfc)
|
/dports/math/R-cran-sf/sf/R/ |
H A D | wkb.R | 67 st_as_sfc(structure(list(x), class = "WKB"), ...) 278 ret = raw(4) 297 rc <- rawConnection(raw(0), "r+")
|