我用CRS = UTM创建了多边形(请参见here),我需要将其转换为纬度/经度。我的某些多边形与日期线交叉,这导致变换创建了一个跨整个地球的多边形。
library(sp)
library(rgeos)
points <- data.frame(x = c(-179.5, 0), y = c(-50, -30))
coordinates(points) <- ~x+y
proj4string(points) <- '+init=epsg:4326'
points_sp <- spTransform(points, CRS('+init=epsg:32621')) # wrong zone, but ignored for example
# expand point to circle
circles <- gBuffer(points_sp, width = 1e+5)
# transform back to WGS84
circles_latlon <- spTransform(circles, CRS(proj4string(points)))
par(mfrow = c(1, 2))
plot(circles, axes = TRUE, main = 'UTM')
plot(circles_latlon, axes = TRUE, main = 'WGS84')
有没有办法分割多边形?还是解决日期变更问题的替代解决方案?
答案 0 :(得分:0)
我问了类似的问题后才发现这个问题。 @Humpelstielzchen在suggested to me中使用了st_wrap_dateline()
软件包中的sf
,到目前为止,它似乎可以正常工作。