gpt4 book ai didi

R:计算两个之间有多少个多边形

转载 作者:行者123 更新时间:2023-12-02 09:17:22 27 4
gpt4 key购买 nike

我试图重新创建一张 map ,显示您距离克拉科夫有多少个市政当局: How many municipals away are you from Krakow

并将城市从克拉科夫更改为弗罗茨瓦夫。该 map 是在 GIMP 中完成的。

我有一个 shapefile(可在此处获取: http://www.gis-support.pl/downloads/powiaty.zip )。我阅读了 shapefile 文档包,例如 maptoolsrgdalsf,但我找不到自动函数来计算它,因为我不会不喜欢手动执行此操作。

有没有一个函数可以做到这一点?

鸣谢:该 map 由 Hubert Szotek 在 https://www.facebook.com/groups/mapawka/permalink/1850973851886654/ 上绘制

最佳答案

我在网络分析方面没有那么丰富的经验,所以我必须承认不能理解下面的每一行代码。但它有效!很多 Material 改编自这里:https://cran.r-project.org/web/packages/spdep/vignettes/nb_igraph.html

这是最终结果:

enter image description here

代码

# Load packages
library(raster) # loads shapefile
library(igraph) # build network
library(spdep) # builds network
library(RColorBrewer) # for plot colour palette
library(ggplot2) # plots results

# Load Data
powiaty <- shapefile("powiaty/powiaty")

首先是poly2nb函数用于计算邻近区域:

# Find neighbouring areas
nb_q <- poly2nb(powiaty)

这将创建我们的空间网格,我们可以在此处看到:

# Plot original results
coords <- coordinates(powiaty)
plot(powiaty)
plot(nb_q, coords, col="grey", add = TRUE)

enter image description here

这是我不能 100% 确定发生了什么的地方。基本上,它计算出网络中所有形状文件之间的最短距离,并返回这些对的矩阵。

# Sparse matrix
nb_B <- nb2listw(nb_q, style="B", zero.policy=TRUE)
B <- as(nb_B, "symmetricMatrix")

# Calculate shortest distance
g1 <- graph.adjacency(B, mode="undirected")
dg1 <- diameter(g1)
sp_mat <- shortest.paths(g1)

完成计算后,现在可以将数据格式化为绘图格式,以便将最短路径矩阵与空间数据帧合并。

我不确定使用什么作为引用数据集的 ID 最好,所以我选择了 jpt_kod_je多变的。

# Name used to identify data
referenceCol <- powiaty$jpt_kod_je

# Rename spatial matrix
sp_mat2 <- as.data.frame(sp_mat)
sp_mat2$id <- rownames(powiaty@data)
names(sp_mat2) <- paste0("Ref", referenceCol)

# Add distance to shapefile data
powiaty@data <- cbind(powiaty@data, sp_mat2)
powiaty@data$id <- rownames(powiaty@data)

数据现在采用适合显示的格式。使用基本功能spplot我们可以很快得到一个图表:

displaylayer <- "Ref1261" # id for Krakow

# Plot the results as a basic spplot
spplot(powiaty, displaylayer)

我更喜欢使用 ggplot 来绘制更复杂的图表,因为您可以更轻松地控制样式。然而,它对如何将数据输入其中有点挑剔,因此我们需要在构建图表之前重新格式化数据:

# Or if you want to do it in ggplot

filtered <- data.frame(id = sp_mat2[,ncol(sp_mat2)], dist = sp_mat2[[displaylayer]])
ggplot_powiaty$dist == 0

ggplot_powiaty <- powiaty %>% fortify()
ggplot_powiaty <- merge(x = ggplot_powiaty, y = filtered, by = "id")
names(ggplot_powiaty)

还有情节。我通过删除不需要的元素并添加背景来对其进行了一些定制。另外,为了使搜索中心的区域变为黑色,我使用 ggplot_powiaty[ggplot_powiaty$dist == 0, ] 对数据进行子集化。 ,然后将其绘制为另一个多边形。

ggplot(ggplot_powiaty, aes(x = long, y = lat, group = group, fill = dist)) +
geom_polygon(colour = "black") +
geom_polygon(data =ggplot_powiaty[ggplot_powiaty$dist == 0, ],
fill = "grey60") +
labs(title = "Distance of Counties from Krakow", caption = "Mikey Harper") +
scale_fill_gradient2(low = "#d73027", mid = "#fee08b", high = "#1a9850", midpoint = 10) +
theme(
axis.line = element_blank(),
axis.text.x = element_blank(),
axis.text.y = element_blank(),
axis.ticks = element_blank(),
axis.title.x = element_blank(),
axis.title.y = element_blank(),
panel.grid.minor = element_blank(),
panel.grid.major = element_blank(),
plot.background = element_rect(fill = "#f5f5f2", color = NA),
panel.background = element_rect(fill = "#f5f5f2", color = NA),
legend.background = element_rect(fill = "#f5f5f2", color = NA),
panel.border = element_blank())

enter image description here

要绘制弗罗茨瓦夫(如帖子顶部所示),只需更改 displaylayer <- "Ref0264"并更新标题。

关于R:计算两个之间有多少个多边形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45682226/

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