我已使用rgdal,httr,leafletR包将.shp文件转换为geojson文件
file <- "province" # shp file name
arg_file <- readOGR(dsn = ".", "province") # destination require . to load from current directory
q.dat <- toGeoJSON(data = arg_file, name = "argentina")
现在我有一个argentina.geojson文件
如何在不将.shp文件再次转换为geojson的情况下直接读取geojson文件,因为它需要花费大量时间。
提前致谢