繁体   English   中英

在R中按世界地图裁剪空间多边形

[英]Clip spatial polygon by world map in R

这是我第一次在R中进行任何形式的空间数据可视化,而且我遇到了一个特定的问题。 我想根据世界地图剪辑一个空间多边形(由一系列经/纬度坐标指定),以便删除与地图多边形重叠的多边形的任何部分。 以下面的代码中的示例为例,我想裁剪矩形的空间多边形,以便仅保留多边形的海洋部分。

我已经找到了如何保留两个空间多边形之间的交集的示例,但我想做相反的事情。 也许有一种方法可以定义交点,然后从要裁剪的多边形中“减去”该交点?

这可能是一个非常基本的问题,但是任何提示将不胜感激!

指定纬度/经度数据:

x_coord <- c(25, 25, 275, 275)
y_coord <- c(20, -50, -50, 20)
xy.mat <- cbind(x_coord, y_coord)
xy.mat

转换为空间多边形对象:

library(sp)
poly = Polygon(xy.mat)
polys = Polygons(list(poly),1)
spatial.polys = SpatialPolygons(list(polys))
proj4string(spatial.polys) = CRS("+proj=longlat +datum=WGS84 +no_defs 
    +ellps=WGS84 +towgs84=0,0,0")

转换为空间多边形数据框并导出为shapefile:

df = data.frame(f=99.9)
spatial.polys.df = SpatialPolygonsDataFrame(spatial.polys, df)
spatial.polys.df

library(GISTools)
library(rgdal)
writeOGR(obj=spatial.polys.df, dsn="tmp", layer="polygon", 
    driver="ESRI Shapefile")

绘制世界地图并添加.shp文件:

map("world", wrap=c(0,360), resolution=0, ylim=c(-60,60))
map.axes()
shp <- readOGR("polygon.shp")
plot(shp, add=TRUE, col="blue", border=FALSE)

这是一个始终保持sf不变的解决方案(我不知道sp ),并说明了从头开始构造sf对象的方法。 st_difference创建所需的几何图形,然后可以使用基本绘图方法或具有geom_sfggplot开发版本进行geom_sf 为此,我使用了来自mapsrnaturalearth地图数据,您可以适应您的特定情况。 不幸的是,在日期线周围包裹起来有点挑剔。

library(tidyverse)
library(sf)
#> Linking to GEOS 3.6.1, GDAL 2.2.0, proj.4 4.9.3
library(rnaturalearth)
library(maps)
#> 
#> Attaching package: 'maps'
#> The following object is masked from 'package:purrr':
#> 
#>     map

x_coord <- c(25, 25, 275, 275)
y_coord <- c(20, -50, -50, 20)
polygon <-  cbind(x_coord, y_coord) %>%
  st_linestring() %>%
  st_cast("POLYGON") %>%
  st_sfc(crs = 4326, check_ring_dir = TRUE) %>%
  st_sf() %>%
  st_wrap_dateline(options = c("WRAPDATELINE=YES", "DATELINEOFFSET=180"))

land <- rnaturalearth::ne_countries(returnclass = "sf") %>%
  st_union()
ocean <- st_difference(polygon, land)
#> although coordinates are longitude/latitude, st_difference assumes that they are planar

plot(st_geometry(land))
plot(st_geometry(polygon), add = TRUE)
plot(st_geometry(ocean), add = TRUE, col = "blue")

ggplot() +
  theme_bw() +
  borders("world") +
  geom_sf(data = ocean)

reprex软件包 (v0.2.0)创建于2018-03-13。

如果我正确理解了您想要的内容,则可以使用st_difference()和st_union()使用sf包来st_difference()

根据您的代码,您可以执行此操作。

# world data
data("wrld_simpl", package = 'maptools')

# load sf package
library('sf')

# coerce sp object to sf
world <- st_as_sf(wrld_simpl)
rectangle <- st_as_sf(spatial.polys)

# difference between world polygons and the rectangle
difference <- st_difference(rectangle, st_union(world))

# coerce back to sp
difference <- as(difference, 'Spatial')

# plot the result
plot(difference)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM