r 读写geojson
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了r 读写geojson相关的知识,希望对你有一定的参考价值。
library(geojsonio)
library(sf)
# read geojson to sf
tmp <- geojsonio::geojson_read(file.path(in_path, layer4_name), what = "sp")
tmp2 <- st_as_sf(tmp)
# write GeoJSON - must transform from UTM to long/lat
st_write(st_transform(sf_mp,"+proj=longlat +datum=WGS84"),
paste0("sf_mp", ".geojson"),
driver = "GeoJSON",
delete_dsn = TRUE)
# read with sf package
layer5_name = "NoSprayInput.geojson"
layer5_path = "./devdata/"
gj_no_spray <- st_as_sf(
sf::st_read(
file.path(layer5_path, layer5_name),
stringsAsFactors = FALSE)
)
以上是关于r 读写geojson的主要内容,如果未能解决你的问题,请参考以下文章
Java读写geojson
用 R 子集 geojson 数据
是否可以在 R 中读取 geoJSON 或 topoJSON 文件来绘制等值线图?
GeoJSON快速入门教程
js怎么解析geojson 格式的
传单 - 寻找将 onEachFeature 添加到现有 geojson 层的方法