0
我正嘗試使用geojsonio包從其他一些R包中提取的data.frames中寫入一些geojson文件。將數據轉換爲geojson錯誤
library(ggplot2)
library(geojsonio)
us_state <- map_data('state')
geojson_write(us_state,
geometry="polygon",
grouping="group",
file="path/file.geojson")
我遇到的問題是與geometry=polygon
參數。我得到以下錯誤:
Error in .subset2(x, i, exact = exact) :
attempt to select less than one element in integerOneIndex
當geometry=point
它工作正常,但後來我當然只是一百萬單獨點,而不是以GeoJSON文件狀態的多邊形。
有什麼想法?
編輯:
我可以得到一個工作GeoJSON的文件,如果我用file<-geojson_json(data.frame)
第一,然後geojson_write(file)
oh,duh。謝謝。 – moman822