通过相当讨厌的大空间多边形数据框剪切表面多边形

问题描述 投票:0回答:1

我遇到了一个棘手的问题。

我试图使用sp包来创建一个简单的多边形剪辑,使用功能st_difference(st_union(x),st_union(y))(或其中的变体)或st_intersectionfunction,无论哪种效果最好。

虽然使用两个表面多边形很容易,但我需要将其剪辑为可怕的大型下载的Large SpatialPolygonsDataFrame,它只是英国的shapefile,从以下网址下载:https://gadm.org/download_country_v3.html

shapefile如下(在leaflet中绘制):enter image description here

    > str(uk)
    Formal class 'SpatialPolygonsDataFrame' [package "sp"] with 5 slots
      ..@ data       :'data.frame': 1 obs. of  70 variables:
      .. ..$ ID_0      : Factor w/ 1 level "242": 1
      .. ..$ ISO       : Factor w/ 1 level "GBR": 1
      .. ..$ NAME_0    : Factor w/ 1 level "United Kingdom": 1
    # .....etc.
    #
    > str(box)
    sfc_POLYGON of length 1; first list element: List of 1
     $ : num [1:5, 1:2] -7.237 0.126 0.126 -7.237 -7.237 ...
     - attr(*, "class")= chr [1:3] "XY" "POLYGON" "sfg"

我想将box(蓝色)剪辑到uk,其原因是在传单中渲染英国(以及法国)的shapefile需要很长时间。

r leaflet gis polygon
1个回答
2
投票

这可能会呢?

sf::st_intersection(UK, box)

完整的代码

library(sf)

UK <- readRDS("./gadm36_GBR_0_sf.rds")

#create box since it was not provided in question
box <- c("POLYGON((-7.237 48,0 48,0 52,-7.237 52, -7.237 48))") %>% 
  st_as_sfc(crs = "+proj=longlat +datum=WGS84")

mapview::mapview(list(UK,box))

enter image description here

mapview::mapview( st_intersection(UK, box) )

enter image description here

update

如果您想使用英国的shapefile剪切框,请使用st_difference()

mapview::mapview( st_difference (box, UK) )

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.