我已经从JSON检索数据到R并编辑了数据以解散边界。来自JSON的数据包括Daerah列表以及坐标,经度和纬度。所以我已经把边界解散到了Wilayah,每个Wilayah都由许多Daerah组成,我有几个Wilayah。
ditu <- readOGR('mys2.json', 'OGRGeoJSON')
lookup <- read.csv("json/aaa")
soa1 <- merge(ditu, lookup, by.x="Name", by.y = "Daerah", all.x = TRUE)
slsoa1 <- gUnaryUnion(soa1, id = soa1$Wilayah)
plot(slsoa1)
我的主要问题是我想以JSON格式保存数据,并且可以通过GeoJSON读取。任何帮助将不胜感激。
答案 0 :(得分:0)
库(geojsonio)
库(rjsonio)
mapwilayah&LT; -geojson_json(slsoa1)
所有&LT; -toJSON(mapwilayah)
写(全部,“mapwilayah.json”)