gpt4 book ai didi

r - 从 SpatialPolygons 和其他 sp 类中提取特征坐标

转载 作者:行者123 更新时间:2023-12-03 22:23:51 26 4
gpt4 key购买 nike

套餐sp为不同的空间概念(点、线、多边形)提供了许多类。对于某些类,访问特征坐标很简单,例如SpatialLines .所有示例均取自各自的类(class)帮助页​​面。

l1 = cbind(c(1,2,3),c(3,2,2))
l1a = cbind(l1[,1]+.05,l1[,2]+.05)
l2 = cbind(c(1,2,3),c(1,1.5,1))
Sl1 = Line(l1)
Sl1a = Line(l1a)
Sl2 = Line(l2)
S1 = Lines(list(Sl1, Sl1a), ID="a")
S2 = Lines(list(Sl2), ID="b")
Sl = SpatialLines(list(S1,S2))
coordinates(Sl)
# [prints a list of two with corresponding segments]

对于 SpatialPolygons , coordinates()返回多边形中心,如下所示。
Sr1 = Polygon(cbind(c(2,4,4,1,2),c(2,3,5,4,2)))
Sr2 = Polygon(cbind(c(5,4,2,5),c(2,3,2,2)))
Sr3 = Polygon(cbind(c(4,4,5,10,4),c(5,3,2,5,5)))
Sr4 = Polygon(cbind(c(5,6,6,5,5),c(4,4,3,3,4)), hole = TRUE)

Srs1 = Polygons(list(Sr1), "s1")
Srs2 = Polygons(list(Sr2), "s2")
Srs3 = Polygons(list(Sr3, Sr4), "s3/4")
SpP = SpatialPolygons(list(Srs1,Srs2,Srs3), 1:3)
coordinates(SpP)
[,1] [,2]
[1,] 2.696970 3.545455
[2,] 3.666667 2.333333
[3,] 6.133333 3.933333

通用软件包中是否有一个方便的功能可以提取特征坐标?我想出了一个函数 SpatialPolygons ,但我正在寻找经过更好测试并且一致的东西,甚至可能在大多数/所有 sp类。
getEdges <- function(x) {
stopifnot(class(x) == "SpatialPolygons")
lapply(x@polygons, function(y) {
y@Polygons[[1]]@coords
})
}
getEdges(SpP)
# [returns a list of three, coordinates in a matrix]

最佳答案

我能想到的最好方法是使用 fortify函数来自 ggplot2 . fortify是一个通用函数,它具有将通用 R 对象(例如 lm 等)转换为 data.frame 的方法其中ggplot2可用于绘图。完整列表提供:

> ggplot2:::fortify.
ggplot2:::fortify.cld
ggplot2:::fortify.confint.glht
ggplot2:::fortify.data.frame
ggplot2:::fortify.default
ggplot2:::fortify.glht
ggplot2:::fortify.Line
ggplot2:::fortify.Lines
ggplot2:::fortify.lm
ggplot2:::fortify.map
ggplot2:::fortify.NULL
ggplot2:::fortify.Polygon
ggplot2:::fortify.Polygons
ggplot2:::fortify.SpatialLinesDataFrame
ggplot2:::fortify.SpatialPolygons
ggplot2:::fortify.SpatialPolygonsDataFrame
ggplot2:::fortify.summary.glht

你可以看到这包括一个 fortify SpatialPolygons* 的函数对象。使用您的示例数据:
> obj = fortify(SpP)
long lat order hole piece group id
1 2 2 1 FALSE 1 s1.1 s1
2 1 4 2 FALSE 1 s1.1 s1
3 4 5 3 FALSE 1 s1.1 s1
4 4 3 4 FALSE 1 s1.1 s1
5 2 2 5 FALSE 1 s1.1 s1
6 5 2 1 FALSE 1 s2.1 s2
7 2 2 2 FALSE 1 s2.1 s2
8 4 3 3 FALSE 1 s2.1 s2
9 5 2 4 FALSE 1 s2.1 s2
10 4 5 1 FALSE 1 s3/4.1 s3/4
11 10 5 2 FALSE 1 s3/4.1 s3/4
12 5 2 3 FALSE 1 s3/4.1 s3/4
13 4 3 4 FALSE 1 s3/4.1 s3/4
14 4 5 5 FALSE 1 s3/4.1 s3/4
15 5 4 6 TRUE 2 s3/4.2 s3/4
16 5 3 7 TRUE 2 s3/4.2 s3/4
17 6 3 8 TRUE 2 s3/4.2 s3/4
18 6 4 9 TRUE 2 s3/4.2 s3/4
19 5 4 10 TRUE 2 s3/4.2 s3/4

并绘制结果:
require(ggplot2); theme_set(theme_bw())
ggplot(aes(x = long, y = lat, group = group), data = obj) + geom_path()

enter image description here

关于r - 从 SpatialPolygons 和其他 sp 类中提取特征坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12196440/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com