Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Well-Known Binary (WKB) を入力として取り、Well-Known Text (WKT) 表現を返す R のパッケージ/関数を知っている人はいますか?
コードとデータを含む再現可能な例は提供されていませんが、このコードが役立つと思います。
library(rgdal) library(wkb) library(rgeos) wkb <- readBin("geometry.wkb", what = "raw", n = 1000) wkb <- list(wkb) writeWKT(readWKB(wkb))