R如何将MultiLineString GeoJson文件转换为具有长列和经列的数据框?

时间:2019-03-09 06:55:42

标签: r geojson

我有一个从gqig gis软件导出的MultiLineString Geogeson文件。 一个小例子:

{
"type": "FeatureCollection",
"name": "route1",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" 
 } },
 "features": [
 { "type": "Feature", "properties": { "FID": 0 }, "geometry": { "type": 
 "MultiLineString", "coordinates": [ [ [ 1936131.287994222715497, 
 -4335318.772792792879045 ], [ -2633407.770391199737787, 
  1763382.609922708477825 ], [ -2922369.195528693497181, 
  4600947.908943663351238 ], [ -1640888.092745035886765, 
  5275789.498084637336433 ], [ -361201.781421858817339, 5970373.793290910311043 
  ], [ -361201.781421858817339, 5970373.793290910311043 ] ] ] 
 } }
]
}

如何在带有经纬度的数据帧绑定节点中转换它? 预期结果:

node    long                    lat 
1   1936131.287994222715497    -4335318.772792792879045 
2   -2633407.770391199737787    1763382.609922708477825 

我尝试过的操作(创建列表):

  route1 <- jsonlite::fromJSON(readr::read_file("routes/route1.geojson"))

2 个答案:

答案 0 :(得分:2)

如果使用str(route1)检查获得的列表的结构,您会看到数据存储在一个数组中,可以提取该数组。

a <- route1$features$geometry$coordinates[[1]]
a

# , , 1
# 
#         [,1]     [,2]     [,3]     [,4]      [,5]      [,6]
# [1,] 1936131 -2633408 -2922369 -1640888 -361201.8 -361201.8
# 
# , , 2
# 
#          [,1]    [,2]    [,3]    [,4]    [,5]    [,6]
# [1,] -4335319 1763383 4600948 5275789 5970374 5970374

现在,只需执行cbind()即可获得想要的东西。

cbind(a[, , 1], a[, , 2])
#            [,1]     [,2]
# [1,]  1936131.3 -4335319
# [2,] -2633407.8  1763383
# [3,] -2922369.2  4600948
# [4,] -1640888.1  5275789
# [5,]  -361201.8  5970374
# [6,]  -361201.8  5970374

或作为数据框:

d <- data.frame(long=a[, , 1], lat=a[, , 2])
d <- cbind(node=rownames(d), d)
d
#   node       long      lat
# 1    1  1936131.3 -4335319
# 2    2 -2633407.8  1763383
# 3    3 -2922369.2  4600948
# 4    4 -1640888.1  5275789
# 5    5  -361201.8  5970374
# 6    6  -361201.8  5970374

答案 1 :(得分:2)

library(sf)可以读取GeoJSON。这将为您提供一个sf对象。如果需要坐标,可以使用st_coordinates()函数。

library(sf)

sf <- sf::st_read( geo, quiet = T )
df <- as.data.frame( sf::st_coordinates( sf ) )

#            X        Y L1 L2
# 1  1936131.3 -4335319  1  1
# 2 -2633407.8  1763383  1  1
# 3 -2922369.2  4600948  1  1
# 4 -1640888.1  5275789  1  1
# 5  -361201.8  5970374  1  1
# 6  -361201.8  5970374  1  1

这额外的L1L2列告诉您每个坐标对在MULTILINESTRING中的哪个线串所属。