有没有办法用R程序将.Json文件转换成.SHP文件?我刚开始学习新东西。提前谢谢。
发布于 2022-10-20 06:26:48
您可以使用sf包进行如下操作
library(sf)
#Read the Json file
d = read_sf("path with Json file name")
#Write it as shape file
st_write(d, "my_shapefile.shp")https://stackoverflow.com/questions/74135207
复制相似问题