gpt4 book ai didi

r - 从坐标生成多边形

转载 作者:行者123 更新时间:2023-12-02 04:35:25 25 4
gpt4 key购买 nike

我有一个 data.frame ,其中包含 latlng 来定义矩形框的边界,如下所示

  geohash north_lat south_lat  east_lng  west_lng
1 gbsuv 48.69141 48.64746 -4.306641 -4.350586
2 gbsuy 48.69141 48.64746 -4.262695 -4.306641

将其转换为包含一列 POLYGONsf 对象的最简单方法是什么?

最佳答案

创建多边形的关键是坐标必须按顺序形成一个封闭区域(即最后一个点与第一个点相同)。

因此,您的数据需要一些操作来创建坐标,并将它们按顺序排列。在我的示例中,我使用 lapply

完成了此操作

那么剩下的可以从 sf examples 中获取

lst <- lapply(1:nrow(df), function(x){
## create a matrix of coordinates that also 'close' the polygon
res <- matrix(c(df[x, 'north_lat'], df[x, 'west_lng'],
df[x, 'north_lat'], df[x, 'east_lng'],
df[x, 'south_lat'], df[x, 'east_lng'],
df[x, 'south_lat'], df[x, 'west_lng'],
df[x, 'north_lat'], df[x, 'west_lng']) ## need to close the polygon
, ncol =2, byrow = T
)
## create polygon objects
st_polygon(list(res))

})

## st_sfc : creates simple features collection
## st_sf : creates simple feature object
sfdf <- st_sf(geohash = df[, 'geohash'], st_sfc(lst))

sfdf
# Simple feature collection with 2 features and 1 field
# geometry type: POLYGON
# dimension: XY
# bbox: xmin: 48.64746 ymin: -4.350586 xmax: 48.69141 ymax: -4.262695
# epsg (SRID): NA
# proj4string: NA
# geohash st_sfc.lst.
# 1 gbsuv POLYGON((48.69141 -4.350586...
# 2 gbsuy POLYGON((48.69141 -4.306641...

plot(sfdf)

enter image description here

关于r - 从坐标生成多边形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44335246/

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