作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 sf::world
制作 map ,我只想绘制欧洲、非洲、亚洲和大洋洲:
library(sf)
map = spData::world %>%
dplyr::filter(!continent %in% c("South America", "North America", "Antarctica"))
ggplot() +
geom_sf(data=map, aes(geometry=geom))
st_crop
的各种组合来自
this answer , 裁剪出空白做:
st_crop(map, xmin=-30, xmax=180, ymin=-180, ymax=180)
但它似乎返回一张没有几何图形的空白 map 。我觉得解决方案是简单使用此功能,但我无法到达那里。
最佳答案
您可以使用此答案中提出的方法 https://stackoverflow.com/a/67977330/7756889
library(sf)
library(ggplot2)
map = spData::world %>%
dplyr::filter(!continent %in% c("South America", "North America", "Antarctica"))
# Russia only will not do; Fiji also crosses the antimeridean...
rossiya <- subset(map, iso_a2 %in% c("RU", "FJ"))
pacified_rossiya <- st_shift_longitude(rossiya)
rest_of_world <- subset(map, !iso_a2 %in% c("RU", "FJ"))
map2 <- rbind(pacified_rossiya,
rest_of_world)
plot(st_geometry(map2))
关于r - 防止 spData::world 国家环绕 map /裁剪 map 区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68224036/
的具体位置在哪里? SharePointProjectItem.spdata 文件在 SharePoint 2007 和 SharePoint 2010? 我知道该文件是一个隐藏文件。我尝试搜索隐藏文
我正在使用 sf::world 制作 map ,我只想绘制欧洲、非洲、亚洲和大洋洲: library(sf) map = spData::world %>% dplyr::filter(!co
我是一名优秀的程序员,十分优秀!