R 中 igraph 网络的输出 shapefile
您好,我在 R 中有一个使用 igraph 库的网络
Vertices: 616
Edges: 6270
Directed: TRUE
No graph attributes.
Vertex attributes: name, Lat, Lon.
Edge attributes: V3.
如何使用顶点中的纬度、经度信息生成顶点和边的两个形状文件?
Hello I have a network in R using the igraph library
Vertices: 616
Edges: 6270
Directed: TRUE
No graph attributes.
Vertex attributes: name, Lat, Lon.
Edge attributes: V3.
How can I generate two shapefiles for the Vertices and the Edges using the Lat, Lon info in the vertex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
sp
和maptools
包来完成此操作。maptools
中有方便的函数writePointsShape()
和writeLinesShape()
,可以写入 ESRI shapefile 格式。在此之前,需要从图形顶点中提取纬度/经度信息,并将其放入顶点的 SpatialPoints 对象和边的 SpatialLinesDataFrame 对象中。
此代码为以下示例生成一个非常简单的
igraph
对象:现在,为顶点创建
SpatialPoints
对象最后,为顶点创建
SpatialLinesDataFrame
对象边缘。这有点混乱,但我还没有找到一种快速方法来生成给定坐标的 SpatialLines 对象。You can do this using the
sp
andmaptools
packages. There are handy functionswritePointsShape()
andwriteLinesShape()
inmaptools
that will write to the ESRI shapefile format.Before doing this, it is necessary to extract the lat/lon information from the graph vertices and put it into a
SpatialPoints
object for the vertices, and aSpatialLinesDataFrame
object for the edges.This code produces a very simple
igraph
object for the following example:Now, create the
SpatialPoints
object for the verticesFinally, create the
SpatialLinesDataFrame
object for the edges. This is a little messy, but I am yet to find a quick way to produce a SpatialLines object given coordinates.